@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@500;600;700;800&display=swap');

:root {
  --ink: #151515;
  --paper: #f5f1e9;
  --white: #fff;
  --muted: #6f6a63;
  --bronze: #a8774a;
  --bronze-light: #d5b38d;
  --sage: #6e786b;
  --line: rgba(21,21,21,.14);
  --dark: #171717;
  --dark-soft: #222;
  --radius: 24px;
  --container: min(1180px, calc(100% - 40px));
  --shadow: 0 24px 70px rgba(0,0,0,.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "DM Sans", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
.container { width: var(--container); margin-inline: auto; }

.skip-link {
  position: fixed;
  top: -100px;
  left: 16px;
  z-index: 1000;
  padding: 12px 16px;
  background: white;
  color: black;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: rgba(21,21,21,.95);
  backdrop-filter: blur(14px);
}
.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: white;
}
.brand-icon {
  width: 44px;
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--bronze);
  color: white;
  font-family: "Manrope", sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
}
.brand-copy { display: flex; flex-direction: column; line-height: 1; }
.brand-copy strong {
  font-family: "Manrope", sans-serif;
  letter-spacing: .18em;
  font-size: 1.15rem;
}
.brand-copy small {
  margin-top: 6px;
  font-size: .58rem;
  letter-spacing: .22em;
  color: rgba(255,255,255,.64);
}
.main-nav { display: flex; align-items: center; gap: 28px; color: white; }
.main-nav > a:not(.button) { color: rgba(255,255,255,.72); font-size: .9rem; }
.main-nav > a:hover { color: white; }

.menu-toggle { display: none; background: transparent; border: 0; padding: 8px; }
.menu-toggle span { display: block; width: 25px; height: 2px; margin: 5px 0; background: white; }

.ai-notice {
  position: fixed;
  z-index: 90;
  top: 82px;
  left: 0;
  right: 0;
  padding: 9px 18px;
  background: #ead7be;
  color: #2c2117;
  text-align: center;
  font-size: .76rem;
  line-height: 1.4;
  box-shadow: 0 5px 14px rgba(0,0,0,.12);
}

.button {
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid var(--bronze);
  background: var(--bronze);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); background: #ba8758; }
.button-small { min-height: 42px; padding-inline: 18px; }
.button-ghost { background: transparent; border-color: rgba(255,255,255,.34); }
.button-ghost:hover { background: white; color: var(--ink); border-color: white; }

.hero {
  position: relative;
  min-height: 820px;
  padding: 160px 0 90px;
  display: grid;
  align-items: center;
  background:
    radial-gradient(circle at 10% 35%, rgba(168,119,74,.16), transparent 28%),
    linear-gradient(135deg, #111 0%, #202020 65%, #151515 100%);
  color: white;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  opacity: .16;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 54px 54px;
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 64px;
  align-items: center;
}
.eyebrow {
  margin: 0 0 18px;
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: .76rem;
  font-weight: 800;
  color: var(--bronze-light);
}
.hero h1,
.section-title h2,
.booking-copy h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  line-height: .98;
  letter-spacing: -.045em;
}
.hero h1 { font-size: clamp(4rem, 8vw, 7.8rem); }
.hero h1 span { color: var(--bronze-light); }
.hero-text {
  max-width: 620px;
  margin: 28px 0;
  font-size: 1.12rem;
  color: rgba(255,255,255,.7);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-facts {
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.14);
  display: flex;
  gap: 56px;
}
.hero-facts div { display: flex; flex-direction: column; }
.hero-facts span { color: rgba(255,255,255,.45); font-size: .72rem; text-transform: uppercase; letter-spacing: .16em; }
.hero-facts strong { font-size: .94rem; }

.hero-image {
  position: relative;
  border-radius: 210px 210px 26px 26px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.16);
}
.hero-image img { height: 610px; object-fit: cover; }

.image-label {
  position: absolute;
  z-index: 4;
  top: 14px;
  left: 14px;
  max-width: calc(100% - 28px);
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(15,15,15,.88);
  color: white;
  border: 1px solid rgba(255,255,255,.22);
  font-size: .65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .05em;
  backdrop-filter: blur(8px);
}

.feature-strip { background: var(--bronze); color: white; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.feature-grid div {
  min-height: 106px;
  padding: 24px 28px;
  border-right: 1px solid rgba(255,255,255,.22);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.feature-grid div:first-child { border-left: 1px solid rgba(255,255,255,.22); }
.feature-grid span { color: rgba(255,255,255,.72); font-size: .84rem; }

.section { padding: 120px 0; }
.about-grid, .booking-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 84px;
  align-items: start;
}
.section-title h2, .booking-copy h2 { font-size: clamp(3.2rem, 6vw, 6rem); }
.section-title > p:last-child { max-width: 690px; color: var(--muted); }
.section-title.centered { max-width: 820px; margin: 0 auto 52px; text-align: center; }
.section-title.centered > p:last-child { margin-inline: auto; }
.about-copy .lead { font-size: 1.42rem; line-height: 1.5; color: var(--ink); }
.about-copy p { color: var(--muted); }
.text-link {
  display: inline-flex;
  gap: 12px;
  margin-top: 16px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--ink);
  font-weight: 700;
}
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(5px); }

.dark-section { background: var(--dark); color: white; }
.dark-section .section-title > p:last-child { color: rgba(255,255,255,.55); }
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service-card {
  min-height: 270px;
  padding: 28px;
  background: var(--dark-soft);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  transition: transform .25s ease, border-color .25s ease;
}
.service-card:hover { transform: translateY(-6px); border-color: rgba(213,179,141,.55); }
.service-card > span {
  display: block;
  margin-bottom: 50px;
  color: var(--bronze-light);
  font-weight: 700;
}
.service-card h3 { margin: 0 0 12px; font-family: "Manrope", sans-serif; font-size: 1.45rem; }
.service-card p { margin: 0; color: rgba(255,255,255,.56); }

.gallery-section { background: #eae3d8; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
  margin-top: 46px;
}
.gallery-grid figure {
  position: relative;
  min-height: 310px;
  margin: 0;
  grid-column: span 4;
  overflow: hidden;
  border-radius: var(--radius);
  background: #ccc;
}
.gallery-grid .gallery-large { grid-column: span 7; grid-row: span 2; min-height: 638px; }
.gallery-grid .gallery-wide { grid-column: span 5; }
.gallery-grid img { height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-grid figure:hover img { transform: scale(1.03); }
.gallery-grid figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(16,16,16,.8);
  color: white;
  font-size: .78rem;
  backdrop-filter: blur(7px);
}

.booking-section { background: #f3eee6; }
.booking-copy > p:not(.eyebrow) { color: var(--muted); }
.contact-details { display: grid; margin-top: 36px; border-top: 1px solid var(--line); }
.contact-details a,
.contact-details > div {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}
.contact-details span { color: var(--muted); font-size: .72rem; text-transform: uppercase; letter-spacing: .15em; }
.contact-details strong { margin-top: 3px; }

.booking-form {
  padding: 34px;
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}
input, textarea, select {
  width: 100%;
  border: 1px solid rgba(0,0,0,.16);
  border-radius: 12px;
  padding: 14px;
  background: white;
  color: var(--ink);
  outline: none;
  text-transform: none;
  letter-spacing: 0;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--bronze);
  box-shadow: 0 0 0 3px rgba(168,119,74,.14);
}
textarea { resize: vertical; min-height: 130px; }
select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #4d463d 50%),
    linear-gradient(135deg, #4d463d 50%, transparent 50%);
  background-position:
    calc(100% - 20px) calc(50% - 3px),
    calc(100% - 14px) calc(50% - 3px);
  background-size: 6px 6px;
  background-repeat: no-repeat;
}
.hidden-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.consent {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
  line-height: 1.45;
}
.consent input { width: 18px; height: 18px; margin-top: 2px; padding: 0; }
.form-note { color: var(--muted); font-size: .75rem; }

.map-section a {
  min-height: 250px;
  padding: 40px;
  display: grid;
  place-content: center;
  text-align: center;
  color: white;
  background:
    linear-gradient(rgba(15,15,15,.78), rgba(15,15,15,.78)),
    radial-gradient(circle at center, #75624f, #1b1b1b);
}
.map-section span { color: rgba(255,255,255,.58); }
.map-section strong { font-size: 1.2rem; }

.site-footer { padding: 72px 0 20px; background: #111; color: white; }
.footer-grid { display: grid; grid-template-columns: 1.7fr .7fr 1fr; gap: 70px; }
.footer-grid > div { display: flex; flex-direction: column; align-items: flex-start; gap: 9px; }
.footer-grid p, .footer-grid a, .footer-grid span { color: rgba(255,255,255,.58); }
.footer-grid h3 { font-family: "Manrope", sans-serif; }
.footer-bottom {
  margin-top: 56px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255,255,255,.42);
  font-size: .75rem;
}
.mobile-call { display: none; }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 900px) {
  :root { --container: min(100% - 28px, 760px); }
  .menu-toggle { display: block; }
  .main-nav {
    position: absolute;
    top: 74px;
    left: 14px;
    right: 14px;
    padding: 20px;
    background: #171717;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 18px;
    flex-direction: column;
    align-items: stretch;
    opacity: 0;
    transform: translateY(-12px);
    pointer-events: none;
    transition: .2s ease;
  }
  .main-nav.open { opacity: 1; transform: none; pointer-events: auto; }
  .hero-grid, .about-grid, .booking-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-image img { height: 520px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-grid div, .feature-grid div:first-child { border-left: 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.2); }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid figure,
  .gallery-grid .gallery-large,
  .gallery-grid .gallery-wide { grid-column: span 6; min-height: 340px; }
  .footer-grid { grid-template-columns: 1.4fr 1fr; }
  .footer-grid > div:last-child { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  body { padding-bottom: 66px; }
  .nav-wrap { min-height: 74px; }
  .ai-notice { top: 74px; font-size: .68rem; }
  .hero { padding-top: 170px; }
  .hero h1 { font-size: clamp(3.5rem, 17vw, 5.2rem); }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-facts { gap: 20px; justify-content: space-between; }
  .hero-image img { height: 430px; }
  .section { padding: 82px 0; }
  .section-title h2, .booking-copy h2 { font-size: 3.15rem; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 220px; }
  .service-card > span { margin-bottom: 34px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid figure,
  .gallery-grid .gallery-large,
  .gallery-grid .gallery-wide { grid-column: 1; min-height: 300px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .booking-form { padding: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .mobile-call {
    position: fixed;
    z-index: 120;
    left: 14px;
    right: 14px;
    bottom: 10px;
    min-height: 50px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: var(--bronze);
    color: white;
    font-weight: 800;
    box-shadow: 0 14px 34px rgba(0,0,0,.32);
  }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

.form-test-link a {
  color: var(--bronze);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}
