:root {
  --ink: #181715;
  --paper: #f4efe6;
  --paper-strong: #fffaf0;
  --smoke: #716b63;
  --line: rgba(24, 23, 21, 0.15);
  --brass: #b08a4f;
  --wine: #682f2b;
  --sage: #647060;
  --night: #11100e;
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Inter", Arial, sans-serif;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--paper-strong);
  transition: background 260ms ease, color 260ms ease, border-color 260ms ease, padding 260ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  padding-block: 12px;
  background: rgba(244, 239, 230, 0.92);
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  aspect-ratio: 1;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
}

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

.brand strong {
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.brand small {
  margin-top: -3px;
  font-size: 0.72rem;
  color: currentColor;
  opacity: 0.72;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 38px);
}

.site-nav a {
  position: relative;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 260ms var(--ease);
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  color: inherit;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  transition: transform 220ms ease, opacity 220ms ease;
}

.hero {
  position: relative;
  min-height: 88svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--paper-strong);
  isolation: isolate;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media {
  background-image: url("https://images.unsplash.com/photo-1503951914875-452162b0f3f1?auto=format&fit=crop&w=2000&q=88");
  background-position: center;
  background-size: cover;
  transform: scale(1.03);
  animation: settle 1400ms var(--ease) forwards;
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(17, 16, 14, 0.9), rgba(17, 16, 14, 0.46) 55%, rgba(17, 16, 14, 0.65)),
    linear-gradient(0deg, rgba(17, 16, 14, 0.72), rgba(17, 16, 14, 0.08) 42%);
}

.hero-inner {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 148px 0 72px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--brass);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: var(--font-display);
  line-height: 0.96;
}

h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(4rem, 10vw, 8.8rem);
}

h2 {
  margin: 0;
  font-size: clamp(2.4rem, 5.5vw, 5.4rem);
}

h3 {
  margin: 0 0 8px;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.18;
}

.hero-copy {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 250, 240, 0.82);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 220ms var(--ease), background 220ms ease, border-color 220ms ease, color 220ms ease;
}

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

.button-primary {
  background: var(--wine);
  border-color: var(--wine);
  color: var(--paper-strong);
}

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

.button-secondary {
  border-color: rgba(255, 250, 240, 0.5);
  color: var(--paper-strong);
}

.button-secondary:hover {
  background: var(--paper-strong);
  border-color: var(--paper-strong);
  color: var(--ink);
}

.hero-status {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 250, 240, 0.28);
  color: rgba(255, 250, 240, 0.78);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-pad {
  padding: clamp(70px, 10vw, 132px) clamp(18px, 4vw, 56px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.8fr);
  gap: clamp(28px, 7vw, 96px);
  align-items: end;
  background: var(--paper-strong);
}

.intro-text {
  max-width: 620px;
  margin: 0;
  color: var(--smoke);
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
}

.services {
  background: var(--paper);
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: clamp(34px, 6vw, 70px);
}

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

.service-list {
  border-top: 1px solid var(--line);
}

.service-item {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) auto;
  gap: clamp(18px, 4vw, 52px);
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.service-number {
  color: var(--sage);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.service-item p {
  max-width: 650px;
  margin: 0;
  color: var(--smoke);
}

.service-item strong {
  color: var(--wine);
  font-size: 1.25rem;
}

.craft {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.8fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: stretch;
  background: var(--night);
  color: var(--paper-strong);
}

.craft-image {
  min-height: 560px;
  overflow: hidden;
}

.craft-image img {
  height: 100%;
  object-fit: cover;
}

.craft-panel {
  align-self: center;
}

.craft-panel p:not(.section-kicker) {
  color: rgba(255, 250, 240, 0.7);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 34px 0 0;
}

.proof-grid div {
  border-top: 1px solid rgba(255, 250, 240, 0.25);
  padding-top: 18px;
}

.proof-grid dt {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1;
}

.proof-grid dd {
  margin: 8px 0 0;
  color: rgba(255, 250, 240, 0.58);
  font-size: 0.86rem;
}

.work {
  background: var(--paper-strong);
}

.gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 18px;
}

.gallery-item {
  position: relative;
  min-height: 430px;
  margin: 0;
  overflow: hidden;
  background: var(--night);
}

.gallery-item:first-child {
  min-height: 560px;
}

.gallery-item img {
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease), filter 700ms ease;
}

.gallery-item:hover img {
  transform: scale(1.045);
  filter: saturate(1.06) contrast(1.04);
}

.gallery-item figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 12px 14px;
  background: rgba(244, 239, 230, 0.9);
  backdrop-filter: blur(14px);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.booking {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.75fr);
  gap: clamp(34px, 7vw, 100px);
  background: var(--paper);
}

.booking-copy p:not(.section-kicker) {
  max-width: 560px;
  color: var(--smoke);
}

address {
  margin-top: 34px;
  color: var(--ink);
  font-style: normal;
  font-weight: 700;
}

address a {
  text-decoration-color: rgba(104, 47, 43, 0.45);
  text-underline-offset: 4px;
}

.booking-form {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 38px);
  background: var(--paper-strong);
  border: 1px solid var(--line);
}

.booking-form label {
  display: grid;
  gap: 7px;
  color: var(--smoke);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.booking-form input,
.booking-form select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: #fffdf7;
  color: var(--ink);
  font: inherit;
  padding: 0 13px;
}

.booking-form input:focus,
.booking-form select:focus {
  outline: 2px solid rgba(176, 138, 79, 0.42);
  border-color: var(--brass);
}

.booking-form .button {
  width: 100%;
  margin-top: 4px;
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--smoke);
  font-size: 0.92rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(18px, 4vw, 56px);
  background: var(--night);
  color: rgba(255, 250, 240, 0.72);
  font-size: 0.85rem;
}

.site-footer p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes settle {
  to {
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: block;
    position: relative;
    z-index: 22;
  }

  .site-nav {
    position: fixed;
    inset: 0 0 auto;
    display: grid;
    gap: 0;
    padding: 86px 18px 18px;
    background: var(--paper-strong);
    color: var(--ink);
    border-bottom: 1px solid var(--line);
    transform: translateY(-110%);
    transition: transform 280ms var(--ease);
  }

  .site-nav.is-open {
    transform: translateY(0);
  }

  .site-nav a {
    padding: 18px 0;
    border-top: 1px solid var(--line);
    font-size: 0.95rem;
  }

  .site-header.is-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .site-header.is-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.is-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero {
    min-height: 88svh;
  }

  .hero-status,
  .intro,
  .craft,
  .booking,
  .section-heading {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-status {
    gap: 8px;
  }

  .service-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .craft-image {
    min-height: 360px;
  }

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

  .gallery-item,
  .gallery-item:first-child {
    min-height: 390px;
  }

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

  .site-footer {
    display: grid;
  }
}

@media (max-width: 520px) {
  .hero-inner {
    padding-bottom: 48px;
  }

  .button {
    width: 100%;
  }

  .hero-status {
    font-size: 0.68rem;
  }

  .booking-form {
    padding: 20px;
  }
}
