:root {
  --ink: #15171a;
  --muted: #6b717c;
  --paper: #f7f3ed;
  --soft: #ebe3d7;
  --line: rgba(21, 23, 26, 0.14);
  --charcoal: #1f2428;
  --gold: #b9925f;
  --sage: #65776a;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(26, 27, 28, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  min-height: 100vh;
  color: var(--white);
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

.nav {
  width: min(1180px, calc(100% - 40px));
  height: 86px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 5;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.12);
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 15px;
}

.brand small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 600;
}

.nav-links a {
  transition: color 180ms ease;
}

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

.nav-cta {
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.12);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  place-items: center;
}

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

.hero {
  width: min(1180px, calc(100% - 40px));
  min-height: calc(100vh - 86px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  align-items: end;
  gap: 34px;
  padding: 90px 0 48px;
  position: relative;
  z-index: 2;
}

.hero-media {
  position: absolute;
  inset: -86px calc((100vw - min(1180px, calc(100vw - 40px))) / -2) 0;
  z-index: -2;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(19, 22, 24, 0.88), rgba(19, 22, 24, 0.64) 44%, rgba(19, 22, 24, 0.2)),
    linear-gradient(0deg, rgba(19, 22, 24, 0.8), rgba(19, 22, 24, 0.1) 50%);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  max-width: 840px;
  padding-bottom: 42px;
}

.eyebrow,
.section-label {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 900px;
  margin-bottom: 24px;
  font-size: clamp(54px, 8vw, 96px);
}

h2 {
  font-size: clamp(36px, 5vw, 64px);
}

.hero-copy {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: var(--ink);
  background: var(--gold);
}

.button.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

.button.light {
  color: var(--ink);
  border: 1px solid var(--line);
  background: var(--white);
}

.hero-panel {
  display: grid;
  gap: 1px;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow);
}

.hero-panel div {
  padding: 24px;
  background: rgba(21, 23, 26, 0.72);
  backdrop-filter: blur(18px);
}

.hero-panel strong,
.hero-panel span {
  display: block;
}

.hero-panel strong {
  color: var(--gold);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 48px;
  line-height: 1;
}

.hero-panel span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 700;
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 110px 0;
}

.trust-strip {
  width: min(1180px, calc(100% - 40px));
  margin: -34px auto 0;
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(21, 23, 26, 0.14);
  box-shadow: var(--shadow);
}

.trust-strip div {
  min-height: 118px;
  padding: 24px;
  background: var(--white);
}

.trust-strip span,
.trust-strip strong {
  display: block;
}

.trust-strip span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.trust-strip strong {
  margin-top: 12px;
  font-size: 18px;
  line-height: 1.35;
}

.intro-grid,
.story-grid,
.section-heading,
.process-grid,
.faq-grid,
.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.7fr);
  gap: 64px;
  align-items: start;
}

.intro-copy,
.story-grid p,
.section-heading p,
.process-copy p,
.style-list p,
.contact-card p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.seo-card {
  padding: 42px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.7fr);
  gap: 54px;
  background: #fbfaf7;
  border: 1px solid var(--line);
}

.seo-card h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 4.6vw, 58px);
}

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

.quote-card {
  padding: 38px;
  background: var(--charcoal);
  color: var(--white);
  box-shadow: var(--shadow);
}

.quote-card img {
  width: 100%;
  height: 260px;
  margin-bottom: 30px;
  object-fit: cover;
}

.quote-card p {
  color: var(--white);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
}

.quote-card span {
  display: block;
  margin-top: 24px;
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 12px;
}

.text-link {
  justify-self: end;
  align-self: center;
  color: var(--sage);
  font-weight: 800;
  border-bottom: 2px solid var(--gold);
}

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

.service-card {
  min-height: 540px;
  display: flex;
  flex-direction: column;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(26, 27, 28, 0.08);
}

.service-card.featured {
  transform: translateY(-22px);
  background: var(--charcoal);
  color: var(--white);
}

.service-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.service-card div {
  padding: 30px;
}

.service-card span,
.step span {
  color: var(--gold);
  font-weight: 800;
  font-size: 13px;
}

.service-card h3 {
  margin: 14px 0;
  font-size: 24px;
}

.service-card p {
  color: var(--muted);
  line-height: 1.7;
}

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

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 42px;
  background: var(--line);
}

.feature-card {
  min-height: 300px;
  padding: 30px;
  background: #fbfaf7;
}

.feature-card span,
.area-card span,
.testimonial-grid span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.feature-card h3 {
  margin: 34px 0 14px;
  font-size: 24px;
}

.feature-card p {
  color: var(--muted);
  line-height: 1.75;
}

.style-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.8fr);
  gap: 54px;
  align-items: center;
  margin-top: 28px;
}

.style-image img {
  width: 100%;
  height: 720px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.style-content h2 {
  margin-bottom: 34px;
}

.style-list {
  display: grid;
  gap: 1px;
  background: var(--line);
}

.style-list div {
  padding: 24px 0;
  background: var(--paper);
}

.style-list strong {
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
}

.style-list p {
  margin-bottom: 0;
}

.process {
  width: 100%;
  padding-left: max(20px, calc((100vw - 1180px) / 2));
  padding-right: max(20px, calc((100vw - 1180px) / 2));
  background: var(--charcoal);
  color: var(--white);
}

.process-grid {
  width: 100%;
}

.process-copy {
  position: sticky;
  top: 40px;
}

.steps {
  display: grid;
  gap: 14px;
}

.step {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
}

.step strong {
  display: block;
  margin: 10px 0;
  font-size: 20px;
}

.step p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.7;
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 42px;
}

.area-card {
  min-height: 180px;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--white);
}

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

.area-card strong {
  margin-bottom: 14px;
  font-size: 24px;
}

.area-card span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  text-transform: none;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 0.8fr;
  grid-auto-rows: 230px;
  gap: 16px;
  margin-top: 42px;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

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

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

.detail-grid article {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  background: var(--charcoal);
}

.detail-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
  transition: transform 260ms ease, opacity 260ms ease;
}

.detail-grid article:hover img {
  transform: scale(1.04);
  opacity: 0.96;
}

.detail-grid div {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  color: var(--white);
}

.detail-grid span,
.detail-grid strong {
  display: block;
}

.detail-grid span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.detail-grid strong {
  margin-top: 8px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 28px;
  line-height: 1.05;
}

.concept-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 42px;
}

.concept-grid img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  box-shadow: 0 16px 34px rgba(26, 27, 28, 0.08);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 42px;
}

.testimonial-grid article {
  min-height: 280px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--charcoal);
  color: var(--white);
}

.testimonial-grid p {
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.78);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 25px;
  line-height: 1.22;
}

.testimonial-grid strong,
.testimonial-grid span {
  display: block;
}

.testimonial-grid span {
  margin-top: 6px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--line);
  background: var(--white);
}

.faq-list summary {
  cursor: pointer;
  padding: 22px;
  font-weight: 800;
}

.faq-list p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
  line-height: 1.75;
}

.cta-band {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--sage);
  color: var(--white);
}

.cta-band span,
.cta-band strong {
  display: block;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.cta-band span {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 12px;
}

.cta-band strong {
  margin-top: 8px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.05;
}

.contact-card {
  padding: 56px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-card h2 {
  margin-bottom: 18px;
}

.contact-card .button {
  margin-top: 18px;
}

.contact-details {
  display: grid;
  gap: 1px;
  background: var(--line);
}

.contact-details div {
  padding: 20px;
  background: #fbfaf7;
}

.contact-details span,
.contact-details strong {
  display: block;
}

.contact-details span {
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-details strong {
  line-height: 1.5;
}

footer {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0 42px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 14px;
}

footer a {
  color: var(--ink);
  font-weight: 800;
}

footer div {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

@media (max-width: 920px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    display: none;
    padding: 20px;
    background: rgba(21, 23, 26, 0.95);
    box-shadow: var(--shadow);
  }

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

  .hero,
  .trust-strip,
  .seo-card,
  .intro-grid,
  .story-grid,
  .section-heading,
  .process-grid,
  .faq-grid,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .hero {
    align-items: end;
    padding-top: 52px;
  }

  .hero-panel {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .feature-grid,
  .area-grid,
  .testimonial-grid,
  .detail-grid,
  .style-showcase {
    grid-template-columns: 1fr;
  }

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

  .feature-card {
    min-height: auto;
  }

  .style-image img {
    height: 460px;
  }

  .service-card,
  .service-card.featured {
    min-height: auto;
    transform: none;
  }

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

  .gallery-grid .tall {
    grid-row: span 1;
  }
}

@media (max-width: 620px) {
  .nav,
  .hero,
  .section,
  footer {
    width: min(100% - 28px, 1180px);
  }

  .hero {
    min-height: calc(100vh - 86px);
    padding-bottom: 24px;
  }

  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 36px;
  }

  .hero-copy,
  .intro-copy,
  .section-heading p,
  .process-copy p,
  .contact-card p {
    font-size: 16px;
  }

  .hero-actions,
  .contact-actions,
  .cta-band,
  footer {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-panel {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    margin-top: 0;
    width: min(100% - 28px, 1180px);
  }

  .section {
    padding: 76px 0;
  }

  .process {
    padding-top: 76px;
    padding-bottom: 76px;
  }

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

  .gallery-grid .wide {
    grid-column: span 1;
  }

  .contact-card {
    padding: 28px;
  }

  .cta-band {
    width: min(100% - 28px, 1180px);
    padding: 28px;
  }

  .seo-card,
  .quote-card {
    padding: 28px;
  }

  .style-image img {
    height: 340px;
  }

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

  .detail-grid article {
    min-height: 320px;
  }
}
