:root {
  --ink: #171315;
  --charcoal: #251f22;
  --paper: #fffaf7;
  --cream: #fff4ef;
  --blush: #efd5d9;
  --rose: #b96f7d;
  --deep-rose: #8a3f50;
  --gold: #c7a45a;
  --teal: #2b8a84;
  --white: #ffffff;
  --muted: #705f63;
  --line: rgba(23, 19, 21, 0.12);
  --shadow: 0 22px 60px rgba(23, 19, 21, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  letter-spacing: 0;
  overflow-x: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  border: 0;
}

:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  transform: translateY(-140%);
  padding: 0.7rem 1rem;
  background: var(--ink);
  color: var(--white);
  border-radius: 8px;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 1rem;
  background: rgba(23, 19, 21, 0.82);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border: 1px solid var(--gold);
  border-radius: 8px;
  background: linear-gradient(140deg, var(--ink), var(--rose));
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.6rem;
  font-weight: 700;
}

.brand-text {
  display: grid;
  gap: 0;
  line-height: 1.1;
}

.brand-text strong {
  font-size: 1rem;
}

.brand-text small {
  color: var(--blush);
  font-size: 0.76rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.site-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.8rem;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
  font-size: 0.92rem;
}

.site-nav a:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.site-nav .nav-cta {
  background: var(--blush);
  color: var(--ink);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

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

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 14%, rgba(199, 164, 90, 0.16), transparent 26%),
    radial-gradient(circle at 92% 20%, rgba(43, 138, 132, 0.12), transparent 28%),
    linear-gradient(180deg, #fff8f3 0%, #f6e2e4 58%, #fffaf7 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 18%;
  background: linear-gradient(0deg, rgba(255, 250, 247, 0.95), transparent);
  pointer-events: none;
}

.hero-ribbons {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.55;
}

.hero-ribbons span {
  position: absolute;
  left: -12%;
  width: 128%;
  height: 80px;
  background: linear-gradient(90deg, transparent, rgba(199, 164, 90, 0.18), rgba(185, 111, 125, 0.08), transparent);
  transform: rotate(-10deg);
  animation: ribbon-slide 9s ease-in-out infinite alternate;
}

.hero-ribbons span:first-child {
  top: 19%;
}

.hero-ribbons span:last-child {
  bottom: 17%;
  animation-delay: -4s;
  transform: rotate(8deg);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 5.8rem 0 4.4rem;
}

.hero-brand-banner {
  overflow: hidden;
  margin: 0 0 1.25rem;
  border: 1px solid rgba(199, 164, 90, 0.42);
  border-radius: 8px;
  background: var(--cream);
  box-shadow: 0 22px 58px rgba(116, 79, 80, 0.18);
}

.hero-brand-banner img {
  width: 100%;
  aspect-ratio: 2172 / 724;
  object-fit: cover;
  object-position: center;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--deep-rose);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.hero .eyebrow {
  color: var(--deep-rose);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  font-size: 3.35rem;
}

h2 {
  font-size: 2.65rem;
}

h3 {
  font-size: 1.35rem;
}

.hero-copy {
  max-width: 720px;
  margin: 0.9rem 0 0;
  color: var(--muted);
  font-size: 1.1rem;
}

.hero-actions,
.price-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.25rem;
}

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.15rem;
  border-radius: 8px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--rose), var(--gold));
  color: var(--white);
  box-shadow: 0 14px 35px rgba(185, 111, 125, 0.32);
}

.btn-primary:hover {
  box-shadow: 0 18px 45px rgba(185, 111, 125, 0.42);
}

.btn-secondary {
  background: var(--white);
  color: var(--ink);
}

.btn-ghost {
  border: 1px solid rgba(23, 19, 21, 0.18);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.58);
}

.btn-icon {
  display: grid;
  place-items: center;
  min-width: 26px;
  height: 26px;
  border-radius: 8px;
  font-size: 0.74rem;
  background: rgba(255, 255, 255, 0.2);
}

.price-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0.62rem 0.85rem;
  border: 1px solid rgba(23, 19, 21, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  backdrop-filter: blur(12px);
}

.price-strip strong {
  margin-left: 0.3rem;
  color: var(--deep-rose);
}

.hero .price-strip {
  display: none;
}

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 1.3rem;
  z-index: 3;
  width: 28px;
  height: 46px;
  border: 1px solid rgba(23, 19, 21, 0.32);
  border-radius: 999px;
  transform: translateX(-50%);
}

.scroll-indicator span {
  display: block;
  width: 6px;
  height: 6px;
  margin: 9px auto 0;
  border-radius: 999px;
  background: var(--ink);
  animation: scroll-dot 1.7s ease-in-out infinite;
}

.section {
  padding: 5.5rem 0;
}

.intro-section {
  background: linear-gradient(180deg, var(--paper), var(--cream));
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.section-copy p:not(.eyebrow),
.section-heading p:not(.eyebrow) {
  color: var(--muted);
}

.section-copy p {
  max-width: 650px;
}

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

.feature-grid article,
.trust-card,
.contact-form,
.hours,
.price-table,
.offer-panel,
.service-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
}

.feature-grid article {
  min-height: 160px;
  padding: 1.15rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.35rem;
}

.feature-grid strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.1rem;
}

.feature-grid span {
  color: var(--muted);
  font-weight: 700;
}

.services-section {
  background: var(--ink);
  color: var(--white);
}

.services-section .eyebrow {
  color: var(--blush);
}

.services-section .section-heading {
  max-width: 790px;
}

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

.service-card {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.32);
  transform-style: preserve-3d;
  transition: transform 220ms ease, border-color 220ms ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(199, 164, 90, 0.55);
}

.service-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 450ms ease;
}

.service-card:hover img {
  transform: scale(1.04);
}

.service-card div {
  padding: 1rem;
}

.service-icon {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 32px;
  margin-bottom: 0.8rem;
  border-radius: 8px;
  background: var(--blush);
  color: var(--ink);
  font-weight: 900;
  font-size: 0.8rem;
}

.service-card h3 {
  margin-bottom: 0.55rem;
}

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

.service-card a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  margin-top: 0.5rem;
  color: var(--blush);
  font-weight: 800;
}

.price-section {
  background:
    linear-gradient(90deg, rgba(255, 250, 247, 0.98), rgba(255, 244, 239, 0.9)),
    url("../images/zoe-price-list.jpg") center / cover fixed;
}

.price-layout {
  align-items: start;
}

.price-table {
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.9);
}

.price-table div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  border-bottom: 1px solid var(--line);
}

.price-table div:last-child {
  border-bottom: 0;
}

.price-table span {
  color: var(--muted);
  font-weight: 700;
}

.price-table strong {
  font-size: 1.25rem;
  color: var(--deep-rose);
}

.gallery-section {
  background: var(--paper);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 2rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  grid-auto-rows: 250px;
  gap: 0.8rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  display: block;
  padding: 0;
  border-radius: 8px;
  background: var(--charcoal);
  cursor: zoom-in;
  box-shadow: 0 18px 46px rgba(23, 19, 21, 0.14);
}

.gallery-item:first-child {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms ease, opacity 220ms ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
  opacity: 0.88;
}

.trust-section {
  background: linear-gradient(180deg, var(--cream), #f8e8ea);
}

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

.trust-card {
  padding: 1.2rem;
  box-shadow: 0 16px 40px rgba(23, 19, 21, 0.12);
}

.trust-card span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 36px;
  margin-bottom: 1rem;
  border-radius: 8px;
  background: var(--ink);
  color: var(--blush);
  font-size: 0.75rem;
  font-weight: 900;
}

.trust-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.contact-section {
  background: var(--ink);
  color: var(--white);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 1.4rem;
  align-items: start;
}

.contact-section .eyebrow {
  color: var(--blush);
}

.contact-info > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
  max-width: 650px;
}

.contact-list {
  display: grid;
  gap: 0.65rem;
  margin: 1.3rem 0;
}

.contact-list a {
  min-height: 50px;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.72rem 0.85rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-weight: 800;
}

.contact-list span {
  display: grid;
  place-items: center;
  min-width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--blush);
  color: var(--ink);
  font-size: 0.75rem;
}

.hours {
  padding: 1rem;
  margin-bottom: 1rem;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.hours h3 {
  margin-bottom: 0.75rem;
}

.hours dl,
.hours dd {
  margin: 0;
}

.hours div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hours dt {
  color: rgba(255, 255, 255, 0.72);
}

.hours dd {
  font-weight: 800;
}

.map-wrap {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  min-height: 270px;
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 310px;
  border: 0;
  filter: saturate(0.9);
}

.contact-form {
  display: grid;
  gap: 0.75rem;
  padding: 1.2rem;
  background: var(--white);
  color: var(--ink);
}

.contact-form h3 {
  margin-bottom: 0.2rem;
}

.contact-form label {
  font-weight: 800;
  color: var(--charcoal);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.88rem 0.9rem;
  color: var(--ink);
  background: #fffdfb;
}

.contact-form textarea {
  resize: vertical;
}

.owner-offer {
  background: linear-gradient(135deg, var(--paper), var(--blush));
}

.offer-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.5rem;
  background: var(--white);
}

.offer-panel p {
  color: var(--muted);
}

.offer-panel ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem 1rem;
  padding-left: 1.2rem;
  margin: 1rem 0 0;
  color: var(--charcoal);
  font-weight: 700;
}

.offer-button {
  text-align: center;
  max-width: 300px;
}

.site-footer {
  padding: 2.2rem 0 1.2rem;
  background: var(--ink);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  padding-bottom: 1.2rem;
}

.footer-grid p {
  max-width: 560px;
  margin: 0.55rem 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.footer-grid a {
  display: block;
  min-height: 32px;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 700;
  text-align: right;
}

.minipage-credit {
  margin: 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.85rem;
}

.minipage-credit a {
  color: var(--blush);
  font-weight: 800;
}

.mobile-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 90;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.4rem;
  padding: 0.45rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(23, 19, 21, 0.92);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(16px);
}

.mobile-cta a {
  min-height: 48px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 900;
}

.mobile-cta a:first-child {
  background: linear-gradient(135deg, var(--rose), var(--gold));
  color: var(--white);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  place-items: center;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.86);
}

.lightbox.is-open {
  display: grid;
}

.lightbox img {
  max-width: min(920px, 92vw);
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
}

.lightbox p {
  margin: 0.8rem 0 0;
  color: var(--white);
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

@keyframes ribbon-slide {
  from {
    transform: translateX(-3%) rotate(-10deg);
  }
  to {
    transform: translateX(3%) rotate(-6deg);
  }
}

@keyframes scroll-dot {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.6;
  }
  50% {
    transform: translateY(18px);
    opacity: 1;
  }
}

@media (max-width: 980px) {
  h1 {
    font-size: 3.4rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .split,
  .contact-layout,
  .offer-panel {
    grid-template-columns: 1fr;
  }

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

  .offer-button {
    max-width: none;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 76px;
  }

  .site-header {
    padding: 0.65rem 0.85rem;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 0.8rem;
    right: 0.8rem;
    top: calc(100% + 0.5rem);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.55rem;
    border-radius: 8px;
    background: rgba(23, 19, 21, 0.96);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    justify-content: flex-start;
  }

  .hero {
    min-height: 100svh;
    background:
      radial-gradient(circle at 15% 14%, rgba(199, 164, 90, 0.16), transparent 28%),
      linear-gradient(180deg, #fff8f3 0%, #f6e2e4 58%, #fffaf7 100%);
  }

  .hero-inner {
    padding: 5.9rem 0 5rem;
  }

  .hero-brand-banner {
    width: calc(100% + 24px);
    margin-left: -12px;
    margin-right: -12px;
    margin-bottom: 1.25rem;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
  }

  h1 {
    font-size: 2.28rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-actions,
  .price-strip {
    flex-direction: column;
  }

  .hero .hero-actions .btn-secondary,
  .hero .hero-actions .btn-ghost {
    display: none;
  }

  .btn,
  .price-strip span {
    width: 100%;
  }

  .section {
    padding: 4.2rem 0;
  }

  .feature-grid,
  .service-grid,
  .trust-grid,
  .offer-panel ul {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 180px;
  }

  .gallery-item:first-child {
    grid-column: 1 / -1;
    grid-row: span 2;
  }

  .hours div,
  .price-table div,
  .footer-grid {
    display: block;
  }

  .price-table strong,
  .hours dd {
    display: block;
    margin-top: 0.25rem;
  }

  .footer-grid a {
    text-align: left;
  }

  .mobile-cta {
    display: grid;
  }
}

@media (max-width: 420px) {
  .container,
  .hero-inner {
    width: min(100% - 24px, 1120px);
  }

  .brand-text small {
    display: none;
  }

  h1 {
    font-size: 2.28rem;
  }

  h2 {
    font-size: 1.82rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
