:root {
  --ink: #171818;
  --muted: #6f6960;
  --paper: #f8f5ef;
  --line: #d9d1c5;
  --clay: #a95f42;
  --olive: #58614b;
  --charcoal: #232322;
  --stone: #c8beb0;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: rgba(18, 18, 17, 0.92);
  border-bottom: 1px solid rgba(217, 209, 197, 0.18);
  backdrop-filter: blur(16px);
}

.brand,
.site-nav {
  display: flex;
  align-items: center;
}

.brand {
  display: inline-flex;
  width: min(300px, 56vw);
  align-items: center;
}

.brand img {
  width: 100%;
  max-height: 90px;
  object-fit: contain;
  border-radius: 4px;
}

.site-nav {
  gap: 18px;
  color: #d8c7a6;
  font-size: 0.95rem;
  font-weight: 600;
}

.site-nav a:hover {
  color: var(--white);
}

.nav-cta {
  padding: 10px 16px;
  background: #d8b36d;
  color: #171818 !important;
  border-radius: 8px;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(216, 199, 166, 0.45);
  border-radius: 8px;
  background: transparent;
  place-items: center;
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 3px auto;
  background: #d8c7a6;
}

.hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  align-items: center;
  gap: clamp(28px, 6vw, 76px);
  min-height: calc(100vh - 73px);
  padding: clamp(38px, 6vw, 88px) clamp(18px, 4vw, 56px) 42px;
  background:
    linear-gradient(90deg, rgba(12, 12, 11, 0.95) 0%, rgba(22, 21, 20, 0.88) 48%, rgba(248, 245, 239, 0.88) 100%),
    var(--charcoal);
  color: var(--white);
}

.logo-pattern {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.13;
  background-image: url("assets/alm-design-logo.png");
  background-position: 0 0;
  background-repeat: repeat;
  background-size: clamp(210px, 24vw, 360px) auto;
  filter: grayscale(1) contrast(1.35);
  pointer-events: none;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    radial-gradient(circle at 18% 28%, rgba(216, 179, 109, 0.18), transparent 26%),
    linear-gradient(90deg, rgba(9, 9, 8, 0.72), rgba(9, 9, 8, 0.18) 58%, rgba(248, 245, 239, 0.72));
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.eyebrow,
.section-label {
  margin: 0 0 14px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(4rem, 12vw, 9.8rem);
  line-height: 0.84;
  letter-spacing: 0;
}

.logo-style-title {
  max-width: 100%;
  font-family: "Julius Sans One", Inter, Arial, sans-serif;
  font-size: clamp(3.2rem, 8.5vw, 7.4rem);
  font-weight: 400;
  line-height: 0.95;
  color: #d8b36d;
  text-transform: uppercase;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.hero-text,
.intro > p,
.showcase-copy p,
.contact p {
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
}

.hero .hero-text {
  color: #e5dbca;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 8px;
  font-weight: 800;
}

.button.primary {
  background: #d8b36d;
  color: #171818;
}

.button.secondary {
  border: 1px solid rgba(216, 199, 166, 0.6);
  color: var(--white);
}

.hero-visual {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 1.18 / 1;
  object-fit: cover;
}

.section {
  padding: clamp(64px, 10vw, 120px) clamp(18px, 4vw, 56px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  gap: clamp(26px, 5vw, 70px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.intro-image {
  overflow: hidden;
  margin-top: 28px;
  border: 1px solid rgba(169, 95, 66, 0.28);
  border-radius: 8px;
  box-shadow: 0 20px 54px rgba(21, 21, 21, 0.12);
}

.intro-image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.intro-copy p {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.14rem);
}

.intro-copy p:last-child {
  margin-bottom: 0;
  color: var(--ink);
  font-weight: 800;
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(300px, 1.25fr);
  gap: clamp(28px, 5vw, 70px);
  background:
    linear-gradient(135deg, rgba(35, 35, 34, 0.96), rgba(54, 49, 43, 0.94)),
    var(--charcoal);
  color: var(--white);
}

.about-heading {
  max-width: 620px;
}

.about-logo-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 28px;
}

.about-logo-row img {
  width: min(240px, 72vw);
  max-height: 130px;
  object-fit: contain;
}

.about-copy {
  padding-left: clamp(0px, 3vw, 42px);
  border-left: 1px solid rgba(216, 179, 109, 0.45);
}

.about-copy p {
  margin-bottom: 18px;
  color: #d7cec0;
  font-size: clamp(1rem, 1.35vw, 1.14rem);
}

.about-copy p:last-child {
  margin-bottom: 0;
}

.about-copy p:nth-child(4) {
  color: #d8b36d;
  font-weight: 800;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  min-height: 250px;
  padding: 26px;
  background: #fffdf9;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-card span {
  display: inline-block;
  margin-bottom: 48px;
  color: var(--olive);
  font-weight: 800;
}

.service-card p,
.process-list p {
  color: var(--muted);
}

.featured-service {
  background:
    linear-gradient(135deg, rgba(35, 35, 34, 0.96), rgba(54, 49, 43, 0.94));
  border-color: rgba(216, 179, 109, 0.55);
  color: var(--white);
}

.featured-service span,
.featured-service p {
  color: #d8c7a6;
}

.handyman-pricing {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(320px, 1.38fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  padding: clamp(64px, 10vw, 120px) clamp(18px, 4vw, 56px);
  background:
    linear-gradient(135deg, rgba(18, 18, 17, 0.97), rgba(39, 35, 31, 0.96)),
    var(--charcoal);
  color: var(--white);
}

.pricing-copy {
  position: sticky;
  top: 130px;
}

.pricing-copy p:not(.section-label) {
  color: #c8c5bd;
  font-size: clamp(1rem, 1.35vw, 1.14rem);
}

.price-list-frame {
  overflow: hidden;
  border: 1px solid rgba(216, 179, 109, 0.5);
  border-radius: 8px;
  background: #111;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

.price-list-frame img {
  width: 100%;
  height: auto;
}

.showcase {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(320px, 1.25fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: clamp(64px, 10vw, 120px) clamp(18px, 4vw, 56px);
  background:
    linear-gradient(135deg, rgba(35, 35, 34, 0.96), rgba(54, 49, 43, 0.94)),
    var(--charcoal);
  color: var(--white);
}

.showcase-copy p {
  color: #c8c5bd;
}

.showcase-panel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}

.work-card {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(216, 179, 109, 0.38);
  border-radius: 8px;
}

.work-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #f4f1ec;
}

.work-card div {
  padding: 16px;
}

.work-card span,
.work-card strong {
  display: block;
}

.work-card span {
  margin-bottom: 6px;
  color: #d8b36d;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.work-card strong {
  color: var(--white);
  font-size: 1rem;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.process-list strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.18rem;
}

.contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(54px, 8vw, 86px) clamp(18px, 4vw, 56px);
  background: var(--stone);
}

.contact div {
  max-width: 780px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.contact-address {
  color: var(--muted);
  font-size: 1rem;
  margin: 18px 0 10px;
}

.contact-map {
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 8px;
  max-width: 360px;
  min-height: 150px;
  width: min(100%, 360px);
}

.button.contact-email,
.button.contact-instagram,
.button.contact-tiktok {
  background: #d8b36d;
  border-color: #d8b36d;
  color: #171818;
}

footer {
  padding: 24px clamp(18px, 4vw, 56px);
  color: var(--muted);
}

footer p {
  margin: 0;
}

@media (max-width: 860px) {
  .menu-button {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 18px 18px;
    background: rgba(18, 18, 17, 0.98);
    border-bottom: 1px solid rgba(217, 209, 197, 0.18);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px 0;
  }

  .nav-cta {
    margin-top: 8px;
    padding: 13px 16px !important;
    text-align: center;
  }

  .hero,
  .intro,
  .about,
  .handyman-pricing,
  .showcase {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    background:
      linear-gradient(180deg, rgba(12, 12, 11, 0.96), rgba(31, 28, 25, 0.9)),
      var(--charcoal);
  }

  .service-grid,
  .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-copy {
    position: static;
  }

  .about-copy {
    padding-left: 0;
    padding-top: 24px;
    border-top: 1px solid rgba(216, 179, 109, 0.45);
    border-left: 0;
  }

  .contact {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-actions {
    justify-content: flex-start;
  }

}

@media (max-width: 560px) {
  h1 {
    font-size: clamp(3.3rem, 22vw, 5rem);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .service-grid,
  .process-list {
    grid-template-columns: 1fr;
  }

}
.button.contact-instagram,
.button.contact-tiktok {
  align-items: center;
  display: inline-flex;
  justify-content: center;
  min-width: 52px;
  padding: 13px 16px;
}

.instagram-icon {
  fill: none;
  height: 22px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  width: 22px;
}

.sr-only {
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.social-links {
  display: flex;
  flex-basis: 100%;
  flex-direction: row;
  gap: 10px;
  justify-content: flex-end;
}

.tiktok-icon {
  fill: none;
  height: 22px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  width: 22px;
}
