
:root {
  --ink: #161512;
  --muted: #6f675b;
  --paper: #f7f2ea;
  --soft: #eee6d8;
  --gold: #b88a45;
  --gold-dark: #8b642d;
  --charcoal: #23211e;
  --white: #ffffff;
  --line: rgba(22, 21, 18, 0.16);
  --shadow: 0 22px 60px rgba(22, 21, 18, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", Arial, sans-serif;
  line-height: 1.6;
  overflow-x: clip;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(247, 242, 234, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--white);
  background: var(--charcoal);
  font-weight: 700;
  letter-spacing: 0;
}

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

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  font-size: 0.95rem;
  font-weight: 600;
}

.site-nav a {
  text-decoration: none;
  color: var(--muted);
}

.site-nav a[aria-current="page"],
.site-nav a:hover {
  color: var(--ink);
}

.site-nav a,
.button,
.menu-button,
input,
select,
textarea {
  -webkit-tap-highlight-color: rgba(184, 138, 69, 0.18);
}

.menu-button {
  display: none;
  border: 1px solid var(--line);
  background: var(--white);
  min-height: 44px;
  padding: 0 16px;
  font: inherit;
  font-weight: 700;
}

.hero {
  min-height: calc(100svh - 76px);
  display: grid;
  align-items: end;
  padding: clamp(28px, 6vw, 80px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(0,0,0,0.72), rgba(0,0,0,0.28), rgba(0,0,0,0.04)),
    url("hero-clean.jpg") center / cover no-repeat;
}

.hero-copy {
  width: min(680px, 100%);
}

.hero h1,
.page-hero h1 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3.3rem, 9vw, 7.8rem);
  line-height: 0.92;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.hero p {
  max-width: 620px;
  font-size: clamp(1.04rem, 2vw, 1.35rem);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.light-text {
  color: #f1d19b;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 800;
  line-height: 1.2;
}

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

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

.button.light,
.button.white {
  color: var(--ink);
  background: var(--white);
}

.button.dark {
  color: var(--white);
  background: var(--charcoal);
}

.button.outline {
  border-color: var(--line);
  background: transparent;
}

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

.intro-band,
.cta,
.section,
.page-hero,
.feature-project,
.wide-image {
  padding-inline: clamp(18px, 5vw, 72px);
}

.intro-band {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: end;
  padding-block: clamp(52px, 8vw, 96px);
  background: var(--white);
}

h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.02;
}

h3 {
  margin: 18px 0 8px;
  font-size: 1.25rem;
}

.section {
  padding-block: clamp(56px, 8vw, 108px);
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 28px;
}

.section-heading h2 {
  max-width: 720px;
}

.section-heading a {
  color: var(--gold-dark);
  font-weight: 800;
}

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

.service-grid article,
.portfolio-card,
.package-card,
.process-grid article,
.values-grid article,
.contact-panel {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 10px 34px rgba(22, 21, 18, 0.06);
}

.service-grid img {
  width: 100%;
  aspect-ratio: 1.18;
  object-fit: cover;
}

.service-grid article p,
.service-grid article h3 {
  padding-inline: 20px;
}

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

.feature-project {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
  padding-block: clamp(56px, 8vw, 104px);
  background: #e7dccb;
}

.feature-project img,
.wide-image img {
  width: 100%;
  box-shadow: var(--shadow);
}

.feature-project p {
  color: #51493f;
}

.cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding-block: 44px;
  color: var(--white);
  background: var(--charcoal);
}

.cta h2 {
  max-width: 850px;
  font-size: clamp(1.9rem, 3.5vw, 3.5rem);
}

.page-hero {
  padding-block: clamp(64px, 9vw, 116px);
  background: linear-gradient(135deg, var(--white), #e9dcc8);
}

.page-hero.compact {
  max-width: none;
}

.page-hero h1 {
  max-width: 980px;
  font-size: clamp(2.7rem, 6vw, 6.2rem);
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.1rem;
}

.split-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1.1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.split-hero img {
  width: 100%;
  aspect-ratio: 1.32;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.service-list {
  display: grid;
  gap: 16px;
}

.service-list article {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 22px;
  padding: clamp(22px, 4vw, 38px);
  background: var(--white);
  border: 1px solid var(--line);
}

.service-list span,
.process-grid span {
  color: var(--gold-dark);
  font-weight: 900;
}

.service-list h2,
.process-grid h2,
.values-grid h2,
.contact-panel h2,
.package-card h2,
.portfolio-card h2 {
  font-size: clamp(1.5rem, 3vw, 2.4rem);
}

.service-list ul {
  display: grid;
  gap: 8px;
  margin-bottom: 0;
  padding-left: 18px;
  color: var(--muted);
}

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

.portfolio-card {
  overflow: hidden;
}

.portfolio-card img {
  width: 100%;
  aspect-ratio: 1.5;
  object-fit: cover;
}

.portfolio-card div {
  padding: 22px;
}

.portfolio-card p,
.package-card p,
.process-grid p,
.values-grid p,
.contact-panel p {
  color: var(--muted);
}

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

.package-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 330px;
  padding: 26px;
}

.package-card .button {
  margin-top: auto;
}

.package-name,
.badge {
  margin: 0;
  color: var(--gold-dark);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.featured {
  color: var(--white);
  background: var(--charcoal);
}

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

.featured .package-name,
.featured .badge {
  color: #f1d19b;
}

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

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

.process-grid article,
.values-grid article {
  padding: 24px;
}

.wide-image {
  padding-bottom: clamp(56px, 8vw, 108px);
}

.wide-image img {
  max-height: 760px;
  object-fit: cover;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 24px;
  align-items: start;
}

.booking-form {
  display: grid;
  gap: 18px;
}

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

label {
  display: grid;
  gap: 8px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
  font-size: 16px;
}

textarea {
  resize: vertical;
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--gold-dark);
  font-weight: 800;
}

.contact-panel {
  padding: 26px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  padding: 34px clamp(18px, 5vw, 72px);
  color: var(--white);
  background: #141311;
}

.site-footer p {
  margin: 6px 0 0;
  color: rgba(255,255,255,0.68);
}

.site-footer a {
  display: block;
  color: var(--white);
  text-align: right;
  text-decoration: none;
}

.copyright {
  grid-column: 1 / -1;
  font-size: 0.9rem;
}

@media (max-width: 980px) {
  .service-grid,
  .package-grid,
  .process-grid,
  .values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-project,
  .split-hero,
  .contact-layout,
  .intro-band {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  .site-header {
    align-items: center;
    min-height: 68px;
    padding-inline: 16px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .menu-button {
    display: inline-flex;
    align-items: center;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 18px 18px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }

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

  .site-nav a {
    padding: 13px 4px;
    border-bottom: 1px solid var(--line);
  }

  .hero {
    min-height: calc(92svh - 68px);
    padding: 28px 18px 42px;
    background-position: 58% center;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.75rem, 16vw, 4.35rem);
  }

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

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

  .service-grid,
  .package-grid,
  .process-grid,
  .values-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

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

  .intro-band,
  .cta,
  .section,
  .page-hero,
  .feature-project,
  .wide-image {
    padding-inline: 16px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer a {
    text-align: left;
  }
}

@media (max-width: 420px) {
  .brand small {
    font-size: 0.7rem;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    font-size: 0.88rem;
  }

  .hero {
    min-height: calc(88svh - 68px);
    background-position: 62% center;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.45rem, 14vw, 3.7rem);
  }

  h2 {
    font-size: clamp(1.75rem, 9vw, 2.65rem);
  }

  .button {
    width: 100%;
    min-height: 50px;
    padding-inline: 14px;
    text-align: center;
  }

  .service-grid article,
  .portfolio-card,
  .package-card,
  .process-grid article,
  .values-grid article,
  .contact-panel {
    box-shadow: 0 8px 24px rgba(22, 21, 18, 0.08);
  }

  .portfolio-card div,
  .package-card,
  .process-grid article,
  .values-grid article,
  .contact-panel {
    padding: 20px;
  }

  .portfolio-card img {
    aspect-ratio: 1.18;
  }
}
