:root {
  --bg: #fcf6f1;
  --surface: #fffaf6;
  --surface-strong: #ffffff;
  --ink: #22304f;
  --muted: #7d7482;
  --line: rgba(34, 48, 79, 0.08);
  --navy: #24345d;
  --rose: #d6a28f;
  --rose-soft: #f7e8e1;
  --pearl: #fff1ea;
  --shadow: 0 24px 46px rgba(36, 52, 93, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Outfit", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(214, 162, 143, 0.18), transparent 24%),
    radial-gradient(circle at right 16%, rgba(255, 236, 226, 0.8), transparent 18%),
    linear-gradient(180deg, #fffaf6 0%, #f9f0ea 100%);
}

.page-shell {
  width: min(1180px, calc(100% - 28px));
  margin: 20px auto 28px;
}

.topbar,
.hero,
.split-section,
.quote-section,
.footer {
  display: grid;
  gap: 24px;
}

.topbar {
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 12px 0 20px;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--ink);
  text-decoration: none;
}

.brand-logo {
  width: 88px;
  height: 88px;
  object-fit: contain;
  border-radius: 18px;
  background: var(--navy);
  box-shadow: 0 12px 20px rgba(36, 52, 93, 0.12);
}

.brand-copy p,
.brand-copy h1,
.eyebrow,
.hero-tagline,
.service-number,
.service-card p,
.content-card p,
.benefit-list,
.form-footer p,
.footer-line {
  margin: 0;
}

.brand-copy p {
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4 {
  margin: 0;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", serif;
}

h1 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

h2 {
  font-size: clamp(3.1rem, 6vw, 5.4rem);
  line-height: 0.94;
  max-width: 10ch;
}

h3 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

h4 {
  font-size: 1.18rem;
}

.topnav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.topnav a {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.95rem;
}

.social-pill {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--rose-soft);
  color: var(--navy);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, #24345d 0%, #314777 100%);
  color: white;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(36, 52, 93, 0.16);
}

.button-outline,
.button-secondary {
  background: rgba(255, 255, 255, 0.75);
  border-color: rgba(34, 48, 79, 0.08);
  color: var(--ink);
}

.button-whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #1fa855 100%);
  color: white;
}

.hero {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  padding: 10px 0 40px;
}

.hero-copy {
  padding-right: 18px;
}

.hero-logo {
  width: min(280px, 100%);
  margin-bottom: 18px;
}

.hero-tagline {
  margin-bottom: 24px;
  color: var(--rose);
  font-size: 1.04rem;
  font-weight: 600;
}

.eyebrow {
  margin-bottom: 10px;
  color: var(--rose);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-text {
  max-width: 48ch;
  color: var(--muted);
  font-size: 1.02rem;
}

.hero-note {
  margin-bottom: 18px;
  color: var(--rose);
  font-size: 0.96rem;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 24px;
}

.hero-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
  color: var(--ink);
}

.hero-visual {
  display: grid;
  align-content: start;
  padding: 8px 0;
}

.hero-image,
.service-card,
.content-card,
.quote-section,
.gallery-card {
  border: 1px solid rgba(255, 255, 255, 0.88);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-image {
  overflow: hidden;
  border-radius: 34px;
  position: relative;
}

.hero-image-strip,
.gallery-grid,
.services-grid {
  display: grid;
  gap: 18px;
}

.hero-image img,
.gallery-card img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  display: block;
}

.hero-image-strip {
  grid-template-columns: 1.25fr 0.85fr 0.85fr;
  margin-top: 44px;
}

.hero-image-inline {
  min-height: 420px;
  border-radius: 28px;
}

.hero-image-large-inline {
  min-height: 420px;
}

.section {
  padding: 14px 0 18px;
}

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

.intro-strip article {
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.intro-strip strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.04rem;
  color: var(--navy);
}

.intro-strip span {
  color: var(--muted);
}

.section-heading {
  margin-bottom: 22px;
}

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

.service-card {
  padding: 24px 22px;
  border-radius: 28px;
  background: linear-gradient(180deg, #fffdfb 0%, var(--pearl) 100%);
}

.service-number {
  margin-bottom: 18px;
  color: rgba(36, 52, 93, 0.28);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.service-card h4 {
  margin-bottom: 10px;
}

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

.gallery-grid {
  grid-template-columns: 1.3fr 1fr 1fr;
}

.gallery-card {
  overflow: hidden;
  min-height: 320px;
  border-radius: 30px;
}

.gallery-card-large {
  min-height: 430px;
}

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

.review-card {
  padding: 26px 24px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.88);
  background: linear-gradient(180deg, #fffdfb 0%, var(--pearl) 100%);
  box-shadow: var(--shadow);
}

.review-text {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: 1.02rem;
}

.review-author {
  margin: 0;
  color: var(--rose);
  font-weight: 600;
}

.split-section {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
}

.content-card {
  padding: 28px;
  border-radius: 32px;
}

.content-card p {
  color: var(--muted);
}

.content-card p + p {
  margin-top: 14px;
}

.content-card-dark {
  background: linear-gradient(180deg, #24345d 0%, #314777 100%);
  color: white;
}

.content-card-dark .benefit-list {
  color: rgba(255, 255, 255, 0.78);
}

.content-card-dark .eyebrow {
  color: #dcc0ae;
}

.benefit-list {
  display: grid;
  gap: 14px;
  margin: 18px 0 0;
  padding-left: 18px;
}

.quote-section {
  padding: 30px;
  border-radius: 34px;
}

.booking-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 28px 30px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.88);
  background: linear-gradient(180deg, #fffdfb 0%, var(--pearl) 100%);
  box-shadow: var(--shadow);
}

.booking-text {
  margin-top: 10px;
  max-width: 56ch;
  color: var(--muted);
}

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

.quote-form label {
  display: grid;
  gap: 8px;
  font-size: 0.94rem;
  font-weight: 600;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  padding: 14px 15px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  font: inherit;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: 2px solid rgba(200, 157, 131, 0.16);
  border-color: rgba(200, 157, 131, 0.34);
}

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

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.form-footer p {
  color: var(--muted);
}

.footer {
  padding: 18px 0 0;
}

.footer-contact {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.footer-contact a {
  color: var(--navy);
  text-decoration: none;
  text-align: center;
  font-weight: 600;
}

.footer-line {
  color: var(--muted);
  text-align: center;
}

@media (max-width: 980px) {
  .hero,
  .split-section,
  .gallery-grid,
  .reviews-grid,
  .services-grid,
  .intro-strip {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-right: 0;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(100% - 16px, 1180px);
  }

  .topbar {
    grid-template-columns: 1fr;
  }

  .topbar-right {
    flex-direction: column;
    align-items: flex-start;
  }

  .topnav {
    flex-wrap: wrap;
  }

  .hero-image-strip,
  .quote-form,
  .footer-contact {
    grid-template-columns: 1fr;
  }

  .booking-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .form-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .button,
  .button-outline,
  .button-secondary {
    width: 100%;
  }
}
