:root {
  --ink: #2c2022;
  --muted: #75666a;
  --line: #f0d8de;
  --paper: #fff8fa;
  --soft: #fae9ee;
  --accent: #bf5f78;
  --accent-dark: #823a4e;
  --sage: #748c73;
  --white: #ffffff;
  --shadow: 0 18px 42px rgba(95, 42, 58, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 248, 250, 0.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.topbar {
  background: var(--accent-dark);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
}

.topbar .section-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.topbar a {
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
}

.nav {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0;
  font-size: 1.2rem;
}

.brand-logo {
  width: 72px;
  height: 48px;
  object-fit: contain;
  border: 0;
  border-radius: 4px;
  background: var(--white);
}

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

.nav-links a {
  min-height: 40px;
  padding: 9px 12px;
  border-radius: 6px;
  text-decoration: none;
  color: var(--muted);
  font-weight: 700;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent-dark);
  background: var(--soft);
}

.hero {
  min-height: calc(100vh - 114px);
  display: grid;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(44, 32, 34, 0.76), rgba(44, 32, 34, 0.46) 48%, rgba(44, 32, 34, 0.1)),
    url("assets/ella-green.jpg") center 30% / cover no-repeat;
  color: var(--white);
}

.hero-inner,
.section-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.hero-copy {
  width: min(620px, 100%);
  padding: 56px 0 96px;
}

.hero-logo {
  width: 180px;
  height: 120px;
  margin-bottom: 24px;
  object-fit: contain;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
}

.page-logo {
  width: 150px;
  height: 100px;
  margin-bottom: 22px;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 26px rgba(95, 42, 58, 0.12);
}

.eyebrow {
  margin: 0 0 10px;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2.6rem, 7vw, 5.8rem);
  max-width: 760px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

h3 {
  font-size: 1.25rem;
}

p {
  margin: 0;
}

.lead {
  margin-top: 20px;
  max-width: 590px;
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-badges span {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 0.95rem;
  font-weight: 800;
}

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

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 800;
  line-height: 1.1;
}

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

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

.button.secondary {
  background: rgba(255, 255, 255, 0.88);
  color: var(--accent-dark);
}

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

.button.outline:hover {
  background: var(--soft);
}

.info-strip {
  background: var(--accent-dark);
  color: var(--white);
}

.info-strip .section-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.18);
}

.info-item {
  padding: 22px;
  background: var(--accent-dark);
}

.info-item strong {
  display: block;
  margin-bottom: 5px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.section {
  padding: 78px 0;
}

.section.alt {
  background: var(--soft);
}

.split {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  align-items: center;
  gap: 44px;
}

.text-flow {
  display: grid;
  gap: 18px;
}

.muted {
  color: var(--muted);
}

.photo-pair {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: 16px;
  align-items: end;
}

.photo-pair img,
.feature-photo,
.gallery img,
.contact-photo {
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.photo-pair img:first-child {
  aspect-ratio: 4 / 5;
}

.photo-pair img:last-child {
  aspect-ratio: 3 / 4;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 32px;
}

.two-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 30px;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 10px 24px rgba(63, 45, 32, 0.08);
}

.card.featured {
  border-color: rgba(191, 95, 120, 0.42);
  background: linear-gradient(180deg, #ffffff, #fff6f8);
}

.card p {
  margin-top: 10px;
  color: var(--muted);
}

.price {
  margin-top: 16px;
  color: var(--accent-dark);
  font-size: 1.8rem;
  font-weight: 900;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.pill-list span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--accent-dark);
  font-weight: 800;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--accent);
}

.check-list li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 0.62em;
  width: 7px;
  height: 4px;
  border-left: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(-45deg);
}

.steps {
  counter-reset: booking;
  display: grid;
  gap: 16px;
  margin-top: 30px;
}

.step {
  position: relative;
  padding: 22px 22px 22px 72px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.step::before {
  counter-increment: booking;
  content: counter(booking);
  position: absolute;
  left: 22px;
  top: 22px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent-dark);
  color: var(--white);
  font-weight: 900;
}

.step p {
  margin-top: 6px;
  color: var(--muted);
}

.faq {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.faq details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px 20px;
}

.faq summary {
  cursor: pointer;
  color: var(--accent-dark);
  font-weight: 900;
}

.faq p {
  margin-top: 10px;
  color: var(--muted);
}

.page-hero {
  padding: 82px 0 48px;
  background: var(--soft);
}

.page-hero p {
  max-width: 720px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 1.08rem;
}

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

.service-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-row.highlight {
  border-color: rgba(191, 95, 120, 0.45);
  background: #fff6f8;
}

.service-row p {
  margin-top: 8px;
  color: var(--muted);
}

.service-price {
  color: var(--accent-dark);
  font-size: 1.55rem;
  font-weight: 900;
  white-space: nowrap;
}

.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 30px;
}

.gallery img {
  aspect-ratio: 4 / 5;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: start;
}

.contact-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.hours {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.hours div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.contact-stack {
  display: grid;
  gap: 20px;
  margin-top: 26px;
}

.contact-item span {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
}

.contact-item a {
  color: var(--accent-dark);
  font-weight: 900;
  text-decoration: none;
}

.map-box {
  min-height: 320px;
  display: grid;
  place-items: center;
  padding: 28px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  text-align: center;
}

.map-frame {
  width: 100%;
  min-height: 360px;
  border: 0;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.map-box p {
  max-width: 440px;
  color: var(--muted);
}

.site-footer {
  padding: 30px 0;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
}

.site-footer .section-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
}

@media (max-width: 820px) {
  .topbar .section-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 10px 0;
  }

  .nav {
    min-height: auto;
    padding: 14px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
  }

  .brand-logo {
    width: 68px;
    height: 45px;
  }

  .nav-links a {
    padding-inline: 8px;
    font-size: 0.95rem;
  }

  .hero {
    min-height: 720px;
    background:
      linear-gradient(180deg, rgba(44, 32, 34, 0.16), rgba(44, 32, 34, 0.82)),
      url("assets/ella-green.jpg") center top / cover no-repeat;
    align-items: end;
  }

  .split,
  .grid,
  .two-grid,
  .gallery,
  .contact-layout,
  .info-strip .section-inner {
    grid-template-columns: 1fr;
  }

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

  .section {
    padding: 58px 0;
  }
}

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

  .actions,
  .button {
    width: 100%;
  }

  .photo-pair {
    grid-template-columns: 1fr;
  }

  .contact-panel {
    padding: 22px;
  }
}
