:root {
  color-scheme: light;
  --ink: #1f1715;
  --muted: #6f625c;
  --paper: #fffaf6;
  --panel: #ffffff;
  --blush: #f0d7cd;
  --rose: #b95c52;
  --plum: #53323d;
  --sage: #748064;
  --gold: #ba8a46;
  --line: rgba(31, 23, 21, 0.14);
  --shadow: 0 24px 60px rgba(47, 29, 22, 0.14);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  overflow-x: hidden;
}

body,
button,
input,
select,
textarea {
  font: inherit;
}

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

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

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  transform: translateY(-160%);
  background: var(--ink);
  color: #fff;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
  padding: 0.85rem clamp(1rem, 4vw, 4rem);
  background: rgba(255, 250, 246, 0.78);
  border-bottom: 1px solid rgba(31, 23, 21, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-family: Georgia, serif;
  font-size: 1.45rem;
}

.brand strong {
  display: block;
  letter-spacing: 0.08em;
}

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

.desktop-nav {
  display: flex;
  gap: clamp(1rem, 3vw, 2rem);
  color: var(--muted);
  font-weight: 700;
}

.desktop-nav a:hover {
  color: var(--rose);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.lang-toggle,
.icon-btn {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
}

.hero {
  position: relative;
  display: grid;
  min-height: 94svh;
  padding: 8.5rem clamp(1rem, 4vw, 4rem) 4rem;
  overflow: hidden;
}

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

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(31, 23, 21, 0.86) 0%, rgba(31, 23, 21, 0.66) 42%, rgba(31, 23, 21, 0.12) 100%),
    linear-gradient(0deg, rgba(31, 23, 21, 0.24), rgba(31, 23, 21, 0));
}

.hero-content {
  align-self: end;
  max-width: 760px;
  color: #fffaf6;
}

.eyebrow,
.section-label {
  margin: 0 0 0.9rem;
  color: var(--rose);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f0d7cd;
}

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

h1 {
  max-width: 11ch;
  margin-bottom: 1.25rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.35rem, 7vw, 7.1rem);
  line-height: 0.92;
  font-weight: 500;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1;
  font-weight: 500;
}

h3 {
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.14;
}

.hero-copy {
  max-width: 630px;
  margin-bottom: 1.5rem;
  color: rgba(255, 250, 246, 0.86);
  font-size: clamp(1rem, 1.7vw, 1.22rem);
  line-height: 1.65;
}

.hero-actions,
.panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.15rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 850;
  line-height: 1.1;
  cursor: pointer;
}

.btn.primary {
  background: var(--rose);
  color: #fff;
}

.btn.secondary {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
}

.btn.ghost {
  border-color: var(--line);
  color: var(--ink);
}

.btn.wide {
  width: 100%;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  width: min(100%, 820px);
  margin-top: 2rem;
}

.trust-row div {
  min-height: 104px;
  padding: 1rem;
  border: 1px solid rgba(255, 250, 246, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 250, 246, 0.1);
  backdrop-filter: blur(10px);
}

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

.trust-row strong {
  margin-bottom: 0.45rem;
  font-size: 1.18rem;
}

.trust-row span {
  color: rgba(255, 250, 246, 0.76);
  font-size: 0.88rem;
  line-height: 1.35;
}

section {
  padding: clamp(4.5rem, 8vw, 7.5rem) clamp(1rem, 4vw, 4rem);
}

.band {
  background: #fff;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.68fr);
  gap: clamp(1.5rem, 5vw, 5rem);
  align-items: end;
}

.intro h2,
.intro p {
  margin: 0;
}

.intro p,
.section-head p,
.booking-copy p,
.hours-panel p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(280px, 0.48fr);
  gap: clamp(1rem, 5vw, 5rem);
  align-items: end;
  max-width: 1180px;
  margin-bottom: 2rem;
}

.section-head.compact {
  display: block;
  max-width: 760px;
}

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

.service-card {
  min-height: 305px;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 30px rgba(47, 29, 22, 0.05);
}

.service-card.accent {
  background: var(--plum);
  color: #fffaf6;
}

.service-number {
  display: inline-block;
  margin-bottom: 3rem;
  color: var(--gold);
  font-weight: 900;
}

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

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

.showcase {
  background: linear-gradient(180deg, var(--paper), #fff);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.28fr 0.78fr 0.78fr;
  grid-auto-rows: minmax(260px, 32vw);
  gap: 1rem;
}

figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #e9dfd7;
}

.feature-shot {
  grid-row: span 2;
}

figcaption {
  position: absolute;
  left: 0.8rem;
  right: 0.8rem;
  bottom: 0.8rem;
  width: fit-content;
  max-width: calc(100% - 1.6rem);
  padding: 0.55rem 0.7rem;
  border-radius: var(--radius);
  background: rgba(31, 23, 21, 0.78);
  color: #fff;
  font-size: 0.82rem;
  line-height: 1.25;
}

.source-note {
  max-width: 860px;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.booking {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.52fr);
  gap: clamp(1.5rem, 5vw, 5rem);
  align-items: start;
}

.contact-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.contact-strip a {
  padding: 0.65rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--plum);
  font-weight: 800;
}

.booking-form,
.contact-panel,
.hours-panel {
  padding: clamp(1rem, 3vw, 1.5rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 0.9rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffaf6;
  color: var(--ink);
  padding: 0.85rem;
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 4px rgba(185, 92, 82, 0.14);
}

.form-status {
  min-height: 1.4em;
  margin: 0.8rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.contact {
  background: var(--ink);
  color: #fffaf6;
}

.contact .section-head p {
  color: #f0d7cd;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.5fr);
  gap: 1rem;
}

.contact-panel,
.hours-panel {
  background: rgba(255, 250, 246, 0.06);
  color: #fffaf6;
  box-shadow: none;
  border-color: rgba(255, 250, 246, 0.14);
}

dl {
  display: grid;
  gap: 1rem;
  margin: 0 0 1.25rem;
}

dt {
  margin-bottom: 0.3rem;
  color: #f0d7cd;
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

dd {
  margin: 0;
  line-height: 1.5;
}

dd a,
.site-footer a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.hours-panel ul {
  display: grid;
  gap: 0.45rem;
  padding: 0;
  margin: 0 0 1rem;
  list-style: none;
}

.hours-panel li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.45rem;
  border-bottom: 1px solid rgba(255, 250, 246, 0.12);
}

.hours-panel p {
  color: rgba(255, 250, 246, 0.72);
  font-size: 0.9rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem clamp(1rem, 4vw, 4rem);
  background: #15100f;
  color: rgba(255, 250, 246, 0.7);
  font-size: 0.9rem;
}

.site-footer p {
  margin: 0;
}

.mobile-cta {
  position: fixed;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.75rem;
  z-index: 60;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.45rem;
  padding: 0.45rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 246, 0.94);
  box-shadow: var(--shadow);
  transform: translateY(140%);
  transition: transform 180ms ease;
}

.mobile-cta.is-visible {
  transform: translateY(0);
}

.mobile-cta a {
  display: grid;
  place-items: center;
  min-height: 44px;
  border-radius: 6px;
  background: var(--ink);
  color: #fff;
  font-weight: 900;
}

@media (max-width: 980px) {
  .desktop-nav {
    display: none;
  }

  .hero {
    min-height: 88svh;
  }

  .trust-row,
  .intro-grid,
  .section-head,
  .booking,
  .contact-layout {
    grid-template-columns: 1fr;
  }

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

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: minmax(230px, 48vw);
  }

  .feature-shot {
    grid-column: span 2;
    grid-row: span 1;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 64px;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 7.25rem;
  }

  .hero-media::after {
    background: linear-gradient(180deg, rgba(31, 23, 21, 0.78), rgba(31, 23, 21, 0.82));
  }

  h1 {
    max-width: 10ch;
    font-size: clamp(3.15rem, 18vw, 4.5rem);
  }

  .hero-actions,
  .panel-actions,
  .site-footer {
    flex-direction: column;
  }

  .trust-row,
  .service-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .trust-row div,
  .service-card {
    min-height: auto;
  }

  .service-number {
    margin-bottom: 1.5rem;
  }

  .feature-shot {
    grid-column: auto;
  }

  .gallery-grid {
    grid-auto-rows: 340px;
  }

  section {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .booking-form,
  .contact-panel,
  .hours-panel {
    padding: 1rem;
  }

  .mobile-cta {
    display: grid;
  }

  body {
    padding-bottom: 72px;
  }
}
