:root {
  --ink: #261f1d;
  --muted: #766c67;
  --paper: #fffaf7;
  --soft: #f5ebe5;
  --rose: #b76e79;
  --rose-dark: #8f4f5b;
  --cream: #fff2e8;
  --line: rgba(38, 31, 29, 0.12);
  --shadow: 0 24px 60px rgba(55, 34, 28, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 64px);
  color: #fff;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(255, 250, 247, 0.94);
  color: var(--ink);
  box-shadow: 0 10px 30px rgba(55, 34, 28, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: "Playfair Display", serif;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand small {
  font-size: 0.74rem;
  font-weight: 600;
  opacity: 0.76;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.94rem;
  font-weight: 700;
}

.nav a {
  opacity: 0.86;
}

.nav a:hover {
  opacity: 1;
}

.header-cta,
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 800;
}

.header-cta {
  padding: 0 20px;
  border: 1px solid currentColor;
}

.button {
  padding: 0 24px;
  border: 1px solid transparent;
}

.button.primary {
  background: var(--rose);
  color: #fff;
  box-shadow: 0 16px 34px rgba(143, 79, 91, 0.26);
}

.button.primary:hover {
  background: var(--rose-dark);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.72);
  color: #fff;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  color: inherit;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
}

.hero img,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero img {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(15, 10, 9, 0.82), rgba(15, 10, 9, 0.42) 52%, rgba(15, 10, 9, 0.16)),
    linear-gradient(0deg, rgba(15, 10, 9, 0.5), rgba(15, 10, 9, 0.06));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 40px));
  margin-left: clamp(20px, 7vw, 92px);
  padding-top: 80px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--rose);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffd8d2;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.02;
}

h1 {
  max-width: 600px;
  font-size: clamp(2.9rem, 6.1vw, 4.8rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 4rem);
}

h3 {
  margin: 0 0 10px;
  font-size: 1.3rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 580px;
  margin: 18px 0 26px;
  font-size: clamp(1.02rem, 2vw, 1.22rem);
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions,
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-row {
  margin-top: 34px;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 700;
}

.trust-row span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.section {
  padding: clamp(64px, 9vw, 116px) clamp(20px, 5vw, 64px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: end;
}

.intro p:last-child,
.experience-copy p,
.local-card p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

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

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

.service-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 34px rgba(55, 34, 28, 0.05);
}

.service-card.featured {
  background: var(--ink);
  color: #fff;
}

.service-number {
  display: inline-block;
  margin-bottom: 38px;
  color: var(--rose);
  font-weight: 900;
}

.service-card p {
  margin: 0 0 22px;
  color: var(--muted);
}

.service-card.featured p {
  color: rgba(255, 255, 255, 0.78);
}

.service-card a {
  font-weight: 900;
  color: var(--rose);
}

.portfolio {
  background: var(--soft);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  grid-auto-rows: minmax(260px, auto);
  gap: 18px;
}

.masonry-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  grid-auto-rows: 260px;
  gap: 14px;
}

.masonry-gallery figure {
  min-height: 0;
  box-shadow: 0 16px 38px rgba(55, 34, 28, 0.12);
}

.style-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -12px 0 28px;
}

.style-pills span {
  padding: 9px 13px;
  border: 1px solid rgba(183, 110, 121, 0.28);
  border-radius: 999px;
  background: rgba(255, 250, 247, 0.72);
  color: var(--rose-dark);
  font-size: 0.9rem;
  font-weight: 800;
}

.masonry-gallery .wide {
  grid-column: span 2;
}

.masonry-gallery .tall {
  grid-row: span 2;
}

figure {
  position: relative;
  min-height: 360px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #ddd;
  box-shadow: var(--shadow);
}

.portfolio-large {
  grid-row: span 2;
}

figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 16px;
  border-radius: var(--radius);
  background: rgba(255, 250, 247, 0.9);
  backdrop-filter: blur(10px);
}

figcaption strong,
figcaption span {
  display: block;
}

figcaption span {
  color: var(--muted);
}

.quote-panel {
  display: grid;
  align-content: end;
  min-height: 280px;
  padding: 30px;
  border-radius: var(--radius);
  background: var(--rose-dark);
  color: #fff;
}

.quote-panel p {
  margin: 0 0 20px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.45rem, 3vw, 2.35rem);
  line-height: 1.12;
}

.quote-panel span {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.experience {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(32px, 6vw, 88px);
}

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

.style-guide {
  background: #fff;
}

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

.style-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 14px 34px rgba(55, 34, 28, 0.05);
}

.style-grid img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.style-grid h3,
.style-grid p {
  padding: 0 18px;
}

.style-grid h3 {
  margin-top: 18px;
}

.style-grid p {
  margin: 0 0 20px;
  color: var(--muted);
}

.step {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.step span {
  display: grid;
  width: 34px;
  height: 34px;
  margin-bottom: 36px;
  place-items: center;
  border-radius: 50%;
  background: var(--cream);
  color: var(--rose-dark);
  font-weight: 900;
}

.step p {
  margin: 0;
  color: var(--muted);
}

.local {
  padding-top: 0;
}

.highlight {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(280px, 1.05fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: center;
  background: var(--soft);
}

.highlight-image {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.highlight-image img {
  width: 100%;
  height: min(680px, 72vw);
  object-fit: cover;
}

.highlight-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.highlight-copy .button {
  margin-top: 12px;
}

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

.faq-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.faq-grid p {
  margin: 0;
  color: var(--muted);
}

.local-card {
  padding: clamp(34px, 7vw, 78px);
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
}

.local-card p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.74);
}

.contact {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(300px, 1fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: start;
}

.contact-links {
  display: grid;
  gap: 10px;
  margin-top: 24px;
  font-weight: 800;
  color: var(--rose-dark);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(24px, 5vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffaf7;
  color: var(--ink);
  font: inherit;
  padding: 14px 15px;
}

textarea {
  resize: vertical;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 28px clamp(20px, 5vw, 64px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer p {
  margin: 0;
}

.footer p:first-child {
  color: var(--ink);
  font-weight: 900;
}

@media (max-width: 860px) {
  .site-header {
    padding: 14px 20px;
  }

  .menu-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: 72px;
    left: 20px;
    right: 20px;
    display: none;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    color: var(--ink);
    box-shadow: var(--shadow);
  }

  .nav.is-open {
    display: grid;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 720px;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(24, 16, 13, 0.82), rgba(24, 16, 13, 0.18)),
      linear-gradient(90deg, rgba(24, 16, 13, 0.52), rgba(24, 16, 13, 0.18));
  }

  .hero-content {
    width: calc(100% - 40px);
    margin: 0 auto;
    align-self: end;
    padding: 120px 0 58px;
  }

  .intro,
  .service-grid,
  .portfolio-grid,
  .experience,
  .contact,
  .highlight,
  .faq-grid,
  .style-grid {
    grid-template-columns: 1fr;
  }

  .masonry-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 240px;
  }

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

  .portfolio-large {
    grid-row: auto;
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: 2.9rem;
  }

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

  .steps {
    grid-template-columns: 1fr;
  }

  figure {
    min-height: 420px;
  }

  .masonry-gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .masonry-gallery .wide,
  .masonry-gallery .tall {
    grid-column: auto;
    grid-row: auto;
  }

  .masonry-gallery figure {
    min-height: 420px;
  }

  .style-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .quote-panel,
  .step {
    padding: 22px;
  }
}
