:root {
  --bg-ivory: #f8f2ec;
  --bg-blush: #f2e4d8;
  --card: #fffaf5;
  --ink: #241818;
  --ink-soft: #5f4f4f;
  --wine: #7d1f31;
  --rose: #bb4a62;
  --copper: #b8784a;
  --line: rgba(36, 24, 24, 0.14);
  --shadow-soft: 0 14px 30px rgba(20, 8, 8, 0.13);
  --shadow-strong: 0 22px 54px rgba(16, 8, 8, 0.28);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: min(1120px, calc(100% - 2.4rem));
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  scroll-behavior: smooth;
}

body {
  font-family: "Outfit", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 20% -5%, rgba(187, 74, 98, 0.16), transparent 35%),
    radial-gradient(circle at 85% 20%, rgba(184, 120, 74, 0.2), transparent 34%),
    linear-gradient(180deg, #fbf5ef 0%, #f6eee6 55%, #fdf8f3 100%);
  line-height: 1.6;
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.35;
  z-index: -1;
}

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

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

.container {
  width: var(--container);
  margin-inline: auto;
}

main {
  padding-top: 94px;
}

h1,
h2,
h3,
h4 {
  font-family: "Cormorant Garamond", Georgia, serif;
  letter-spacing: 0.01em;
  line-height: 1.05;
}

h1 {
  font-size: clamp(2.6rem, 5.2vw, 4.8rem);
}

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

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

p {
  color: var(--ink-soft);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(255, 250, 244, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: 0.3s ease;
}

.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 10px 24px rgba(32, 12, 12, 0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.55rem;
  font-weight: 700;
  white-space: nowrap;
}

.brand-mark {
  color: var(--wine);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.9rem;
  border: 1px solid rgba(125, 31, 49, 0.35);
  border-radius: 999px;
  padding: 0.26rem 0.58rem;
}

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

.site-nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: #3a2d2d;
  padding: 0.6rem 0.95rem;
  border-radius: 999px;
  transition: 0.24s ease;
}

.site-nav a:hover,
.site-nav a.active {
  background: rgba(187, 74, 98, 0.1);
  color: var(--wine);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  border-radius: 999px;
  padding: 0.48rem 0.8rem;
  font: inherit;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  border: none;
  font: inherit;
  font-weight: 600;
  padding: 0.86rem 1.5rem;
  transition: 0.24s ease;
  cursor: pointer;
}

.btn-small {
  padding: 0.55rem 1.05rem;
  font-size: 0.9rem;
}

.btn-solid {
  color: #fff;
  background: linear-gradient(120deg, var(--wine), var(--rose));
  box-shadow: 0 12px 20px rgba(125, 31, 49, 0.26);
}

.btn-solid:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.btn-outline {
  color: var(--wine);
  border: 1px solid rgba(125, 31, 49, 0.35);
  background: rgba(255, 255, 255, 0.58);
}

.btn-outline:hover {
  background: rgba(187, 74, 98, 0.1);
}

.badge {
  display: inline-flex;
  font-size: 0.77rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--wine);
  background: rgba(187, 74, 98, 0.12);
  border: 1px solid rgba(187, 74, 98, 0.24);
  border-radius: 999px;
  padding: 0.4rem 0.86rem;
  margin-bottom: 1rem;
}

.hero {
  padding: 2.2rem 0 4.2rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.3rem, 3vw, 2.8rem);
  align-items: center;
}

.hero-copy p {
  max-width: 52ch;
  margin: 1rem 0 1.8rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-highlights {
  margin-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  color: #473636;
  font-size: 0.92rem;
}

.hero-highlights span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.hero-highlights span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--wine), var(--copper));
}

.hero-media {
  position: relative;
}

.hero-media .main-shot {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 460px;
  box-shadow: var(--shadow-strong);
}

.hero-media .main-shot img {
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

.floating-card {
  position: absolute;
  background: rgba(17, 10, 10, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #f8f0eb;
  padding: 0.85rem 0.95rem;
  border-radius: var(--radius-sm);
  min-width: 170px;
  animation: floatCard 5s ease-in-out infinite;
}

.floating-card h4 {
  font-size: 1.1rem;
  font-family: "Outfit", "Segoe UI", sans-serif;
  margin-bottom: 0.2rem;
}

.floating-card.one {
  left: -28px;
  bottom: 40px;
}

.floating-card.two {
  right: -24px;
  top: 40px;
  animation-delay: -2s;
}

.section {
  padding: 4.1rem 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 1.7rem;
}

.section-head p {
  max-width: 50ch;
}

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

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.card .thumb {
  height: 210px;
  overflow: hidden;
}

.card .thumb img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.card:hover .thumb img {
  transform: scale(1.07);
}

.card-copy {
  padding: 1.2rem;
}

.metrics {
  background: linear-gradient(140deg, #1a1112, #321819);
  color: #f2e8de;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-strong);
}

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

.metric {
  padding: 1rem;
}

.metric .stat-number {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
}

.metric p {
  color: rgba(242, 232, 222, 0.78);
}

.split {
  display: grid;
  grid-template-columns: 0.96fr 1.04fr;
  gap: 1.3rem;
  align-items: center;
}

.split-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.split-media img {
  min-height: 430px;
  object-fit: cover;
}

.list {
  list-style: none;
  display: grid;
  gap: 0.7rem;
  margin: 1.2rem 0 1.8rem;
}

.list li {
  position: relative;
  padding-left: 1.2rem;
  color: #493838;
}

.list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.56rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--rose), var(--copper));
}

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

.quote {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.3rem;
}

.cta {
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, #5f1f2e, #ab4f53 55%, #be8458);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2.4rem);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.2rem;
}

.cta::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  right: -180px;
  top: -180px;
  background: rgba(255, 255, 255, 0.18);
}

.cta p,
.page-banner-content p {
  color: rgba(255, 255, 255, 0.86);
}

.page-hero {
  padding: 2rem 0 2.2rem;
}

.page-banner {
  position: relative;
  min-height: 330px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
}

.page-banner img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
}

.page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(23, 13, 13, 0.78), rgba(23, 13, 13, 0.2));
  z-index: 1;
}

.page-banner-content {
  position: relative;
  z-index: 2;
  padding: clamp(1.4rem, 4vw, 2.5rem);
  max-width: 58ch;
}

.page-banner-content h1 {
  color: #fff;
}

.service-row {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.service-row + .service-row {
  margin-top: 1rem;
}

.service-row .thumb {
  min-height: 260px;
}

.service-row .thumb img {
  min-height: 260px;
  object-fit: cover;
}

.service-row .content {
  padding: 1.3rem;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.price-table th,
.price-table td {
  padding: 0.95rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(36, 24, 24, 0.1);
}

.price-table th {
  background: #f9efe4;
  color: #412f2f;
  font-weight: 600;
}

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

.plan {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  padding: 1.2rem;
  box-shadow: var(--shadow-soft);
}

.plan.featured {
  border-color: rgba(125, 31, 49, 0.45);
  transform: translateY(-6px);
}

.plan .price {
  font-size: 2rem;
  color: #2b1f1f;
}

.plan ul {
  list-style: none;
  margin: 0.8rem 0 1.1rem;
  display: grid;
  gap: 0.5rem;
}

.filter-row {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.filter-row button {
  border: 1px solid rgba(125, 31, 49, 0.28);
  background: rgba(255, 255, 255, 0.75);
  color: var(--wine);
  border-radius: 999px;
  padding: 0.44rem 0.9rem;
  font: inherit;
  cursor: pointer;
}

.filter-row button.active,
.filter-row button:hover {
  background: var(--wine);
  color: #fff;
}

.gallery-grid {
  columns: 3 220px;
  column-gap: 1rem;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-soft);
}

.gallery-item img {
  width: 100%;
  height: auto;
  transition: transform 0.32s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item .overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 0.82rem;
  color: #fff;
  font-size: 0.9rem;
  background: linear-gradient(180deg, transparent, rgba(14, 8, 8, 0.82));
}

.booking-wrap {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1rem;
}

.card-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  box-shadow: var(--shadow-soft);
}

.timeline {
  display: grid;
  gap: 0.8rem;
}

.timeline li {
  list-style: none;
  border-left: 2px solid rgba(125, 31, 49, 0.3);
  padding-left: 0.9rem;
  margin-left: 0.4rem;
}

.form {
  display: grid;
  gap: 0.75rem;
}

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

.form label {
  font-size: 0.88rem;
  color: #4f3d3d;
  display: grid;
  gap: 0.33rem;
}

.form input,
.form select,
.form textarea {
  width: 100%;
  border: 1px solid rgba(36, 24, 24, 0.2);
  border-radius: 10px;
  padding: 0.66rem 0.74rem;
  font: inherit;
  background: #fff;
}

.form textarea {
  min-height: 120px;
  resize: vertical;
}

.form-note {
  font-size: 0.82rem;
  color: #5f4f4f;
}

.success-msg {
  display: none;
  color: #176336;
  font-size: 0.9rem;
  background: #e8f6ee;
  border: 1px solid #badfc8;
  padding: 0.6rem 0.7rem;
  border-radius: 10px;
}

.success-msg.show {
  display: block;
}

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

.team-card {
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.team-card .thumb {
  height: 255px;
}

.team-card .thumb img {
  height: 100%;
  object-fit: cover;
}

.team-card .content {
  padding: 1rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1rem;
}

.info-list {
  display: grid;
  gap: 0.8rem;
}

.info-list li {
  list-style: none;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  padding: 0.82rem;
}

.map-frame {
  border: 0;
  width: 100%;
  min-height: 280px;
  border-radius: var(--radius-md);
}

.site-footer {
  margin-top: 4rem;
  background: #161213;
  color: #f2e8de;
  padding: 2.3rem 0 1.3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr;
  gap: 1.1rem;
}

.site-footer p,
.site-footer li,
.site-footer a {
  color: rgba(242, 232, 222, 0.82);
}

.site-footer h4 {
  margin-bottom: 0.5rem;
}

.footer-list {
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.footer-bottom {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(242, 232, 222, 0.2);
  font-size: 0.86rem;
  color: rgba(242, 232, 222, 0.72);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.12s;
}

.delay-2 {
  transition-delay: 0.22s;
}

.delay-3 {
  transition-delay: 0.32s;
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-9px);
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .split,
  .booking-wrap,
  .contact-grid,
  .service-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .card-grid,
  .plan-grid,
  .team-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-media .main-shot,
  .hero-media .main-shot img {
    min-height: 360px;
  }

  .floating-card.one,
  .floating-card.two {
    position: static;
    margin-top: 0.75rem;
    width: fit-content;
  }
}

@media (max-width: 760px) {
  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 82px;
    display: grid;
    background: rgba(255, 250, 244, 0.98);
    border-bottom: 1px solid var(--line);
    padding: 0.7rem 1.2rem 1rem;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease;
  }

  .site-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-cta {
    margin-top: 0.35rem;
    justify-self: start;
  }

  .section {
    padding: 3.35rem 0;
  }

  .card-grid,
  .plan-grid,
  .team-grid,
  .testimonial-grid,
  .metrics-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    columns: 1;
  }
}
