:root {
  --ink: #171313;
  --muted: #675f58;
  --paper: #fff8f2;
  --cream: #f5eadf;
  --clay: #b4523c;
  --clay-dark: #873724;
  --teal: #0f6b63;
  --gold: #d5a240;
  --line: rgba(23, 19, 19, 0.14);
  --shadow: 0 22px 50px rgba(29, 18, 13, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 54px);
  color: #fff;
  background: linear-gradient(180deg, rgba(14, 11, 10, 0.72), rgba(14, 11, 10, 0));
}

.site-header.scrolled {
  color: var(--ink);
  background: rgba(255, 248, 242, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.8rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  padding: 10px 12px;
  border-radius: 6px;
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a:hover {
  background: rgba(255, 255, 255, 0.16);
}

.site-header.scrolled .site-nav a:hover {
  background: rgba(180, 82, 60, 0.1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 6px;
  color: inherit;
  background: transparent;
}

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

.hero {
  position: relative;
  min-height: 88svh;
  display: grid;
  align-items: end;
  padding: 120px clamp(18px, 5vw, 72px) 54px;
  overflow: hidden;
  color: #fff;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 11, 9, 0.82), rgba(16, 11, 9, 0.42) 48%, rgba(16, 11, 9, 0.15)),
    linear-gradient(0deg, rgba(16, 11, 9, 0.86), rgba(16, 11, 9, 0.08) 42%),
    var(--hero-image, url("https://images.unsplash.com/photo-1763048208932-cbe149724374?auto=format&fit=crop&w=1800&q=82")) center / cover;
  transform: scale(1.02);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f4c86b;
}

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

h1 {
  max-width: 10ch;
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 11vw, 9.5rem);
  line-height: 0.88;
  font-weight: 700;
  letter-spacing: 0;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4.3vw, 4.6rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  font-size: 1.1rem;
}

.hero-content p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.6;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 850;
  cursor: pointer;
}

.button.primary {
  color: #fff;
  background: var(--clay);
}

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

.button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.1);
}

.hero-panel {
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  bottom: 42px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(118px, 1fr));
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(16, 11, 9, 0.38);
  backdrop-filter: blur(18px);
}

.hero-panel div {
  padding: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-panel div:first-child {
  border-left: 0;
}

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

.hero-panel strong {
  font-size: 1rem;
}

.hero-panel span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.88rem;
}

.intro,
.services,
.gallery,
.care,
.booking {
  padding: clamp(64px, 8vw, 112px) clamp(18px, 5vw, 72px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: clamp(24px, 5vw, 76px);
  align-items: end;
  background: #fff;
}

.intro p:last-child,
.care-copy p,
.booking-copy p {
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.75;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

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

.service-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(53, 37, 29, 0.06);
}

.service-card.accent {
  color: #fff;
  background: var(--teal);
}

.service-icon {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  border-radius: 50%;
  color: #fff;
  background: var(--clay);
  font-weight: 900;
  font-size: 0.82rem;
}

.service-card.accent .service-icon {
  color: var(--ink);
  background: var(--gold);
}

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

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

.service-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.service-card.accent .service-meta {
  border-color: rgba(255, 255, 255, 0.22);
}

.gallery {
  background: #201815;
  color: #fff;
}

.gallery .eyebrow {
  color: #f4c86b;
}

.gallery-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 18px;
}

.feature-photo,
.gallery-stack figure {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
}

.feature-photo {
  position: relative;
  min-height: 620px;
}

.feature-photo figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 10px 12px;
  border-radius: 6px;
  color: #fff;
  background: rgba(14, 11, 10, 0.72);
  font-size: 0.9rem;
}

.gallery-stack {
  display: grid;
  gap: 18px;
}

.gallery-stack figure {
  min-height: 330px;
}

.quote-block {
  display: grid;
  align-content: end;
  min-height: 272px;
  padding: 28px;
  border-radius: 8px;
  color: var(--ink);
  background: #f4c86b;
}

.quote-block p {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.4vw, 2.15rem);
  line-height: 1.15;
}

.quote-block span {
  font-weight: 850;
}

.care {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: center;
  background: #fff;
}

.care-list {
  display: grid;
  gap: 14px;
}

.care-list div {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  align-items: start;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.care-list div:last-child {
  border-bottom: 1px solid var(--line);
}

.care-list span {
  color: var(--clay);
  font-weight: 900;
}

.care-list p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.booking {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
  background: var(--cream);
}

.contact-strip {
  display: grid;
  gap: 10px;
  margin-top: 28px;
  font-weight: 850;
}

.contact-strip a {
  width: fit-content;
  border-bottom: 2px solid var(--clay);
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(18px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 850;
}

.hidden-field {
  position: absolute;
  left: -100vw;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(23, 19, 19, 0.22);
  border-radius: 6px;
  padding: 13px 12px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(15, 107, 99, 0.22);
  border-color: var(--teal);
}

.full {
  grid-column: 1 / -1;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 22px;
  margin: 0;
  color: var(--teal);
  font-weight: 850;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 34px clamp(18px, 5vw, 72px);
  color: #fff;
  background: var(--ink);
}

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

@media (max-width: 980px) {
  .hero {
    min-height: 86svh;
  }

  .hero-panel {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(100%, 640px);
    margin-top: 42px;
  }

  .intro,
  .gallery-layout,
  .care,
  .booking {
    grid-template-columns: 1fr;
  }

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

  .feature-photo {
    min-height: 520px;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand span:last-child {
    max-width: 160px;
    line-height: 1.1;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
    background: #fff;
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 12px;
  }

  .hero {
    min-height: auto;
    padding: 112px 18px 36px;
  }

  h1 {
    font-size: clamp(3.6rem, 18vw, 5.8rem);
  }

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

  .hero-panel div,
  .hero-panel div:first-child {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }

  .hero-panel div:first-child {
    border-top: 0;
  }

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

  .feature-photo,
  .gallery-stack figure {
    min-height: 360px;
  }

  .site-footer {
    display: block;
  }
}
