:root {
  --navy-deep: #0A1628;
  --navy-mid: #13213A;
  --navy-soft: #1C2D4A;
  --gold: #D4AF37;
  --gold-soft: #E8C76A;
  --gold-deep: #A88525;
  --cream: #F5EDD6;
  --off-white: #E8E4D6;
  --muted: #8B95A8;
  --line: rgba(212, 175, 55, 0.18);
  --line-strong: rgba(212, 175, 55, 0.45);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', sans-serif;
  background: var(--navy-deep);
  color: var(--off-white);
  line-height: 1.65;
  font-weight: 400;
  overflow-x: hidden;
}

/* Noise texture overlay for warmth */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--cream);
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

/* ===== NAV ===== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  background: rgba(10, 22, 40, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: padding 0.3s;
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.logo-mark {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 500;
}

.nav-links a {
  color: var(--off-white);
  transition: color 0.2s;
  position: relative;
}

.nav-links a:hover { color: var(--gold); }

.nav-cta {
  background: var(--gold);
  color: var(--navy-deep) !important;
  padding: 0.65rem 1.4rem;
  border-radius: 2px;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: all 0.2s;
}

.nav-cta:hover {
  background: var(--gold-soft);
  color: var(--navy-deep) !important;
  transform: translateY(-1px);
}

.mobile-toggle { display: none; font-size: 1.5rem; color: var(--gold); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  top: 20%;
  right: -20%;
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.eyebrow::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  font-size: clamp(2.75rem, 5.5vw, 5rem);
  line-height: 1.05;
  margin-bottom: 2rem;
  font-weight: 400;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--off-white);
  opacity: 0.85;
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

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

.btn-primary {
  background: var(--gold);
  color: var(--navy-deep);
  padding: 1rem 2rem;
  border-radius: 2px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.85rem;
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.btn-primary:hover {
  background: var(--gold-soft);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.25);
}

.btn-ghost {
  padding: 1rem 2rem;
  border: 1px solid var(--line-strong);
  color: var(--cream);
  border-radius: 2px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.85rem;
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* Hero visual — stacked card composition */
.hero-visual {
  position: relative;
  height: 500px;
}

.hero-card {
  position: absolute;
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-soft));
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 1.75rem;
  backdrop-filter: blur(8px);
}

.hero-card-1 {
  top: 0;
  right: 0;
  width: 75%;
  transform: rotate(2deg);
}

.hero-card-2 {
  top: 30%;
  left: 0;
  width: 70%;
  transform: rotate(-3deg);
  background: linear-gradient(135deg, var(--gold-deep), #8C6F1D);
  color: var(--cream);
}

.hero-card-3 {
  bottom: 0;
  right: 8%;
  width: 65%;
  transform: rotate(4deg);
}

.hero-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-style: italic;
  margin-bottom: 0.5rem;
}

.hero-card-meta {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.hero-card-2 .hero-card-meta { color: var(--navy-deep); opacity: 0.7; }
.hero-card-2 h4 { color: var(--navy-deep); }

.hero-card p {
  font-size: 0.85rem;
  line-height: 1.5;
  opacity: 0.85;
}

/* ===== SECTION BASE ===== */
section {
  padding: 7rem 0;
  position: relative;
}

.section-head {
  max-width: 720px;
  margin: 0 auto 5rem;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.section-head h2 em {
  font-style: italic;
  color: var(--gold);
}

.section-head p {
  color: var(--off-white);
  opacity: 0.75;
  font-size: 1.05rem;
}

/* ===== SERVICES ===== */
.services {
  background: var(--navy-mid);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.service-card {
  background: var(--navy-mid);
  padding: 3rem 2.5rem;
  position: relative;
  transition: background 0.3s;
  display: flex;
  flex-direction: column;
  min-height: 520px;
}

.service-card:hover {
  background: var(--navy-soft);
}

.service-number {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--gold);
  margin-bottom: 2rem;
  letter-spacing: 0.1em;
}

.service-icon {
  width: 60px;
  height: 60px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  color: var(--gold);
}

.service-card h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  line-height: 1.15;
}

.service-card h3 em { font-style: italic; color: var(--gold); }

.service-tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--line-strong);
  padding: 0.3rem 0.75rem;
  margin-bottom: 1.5rem;
  align-self: flex-start;
}

.service-card p {
  color: var(--off-white);
  opacity: 0.8;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.service-features {
  list-style: none;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.service-features li {
  padding: 0.5rem 0;
  border-bottom: 1px dashed var(--line);
  font-size: 0.88rem;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  color: var(--off-white);
  opacity: 0.85;
}

.service-features li::before {
  content: '—';
  color: var(--gold);
  flex-shrink: 0;
}

.service-cta {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  transition: gap 0.25s;
}

.service-card:hover .service-cta { gap: 1rem; }

/* ===== GALLERY ===== */
.gallery {
  padding: 6rem 0 3rem;
  border-top: 1px solid var(--line);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 4rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 4px;
  aspect-ratio: 4 / 5;
  background: var(--navy-mid);
  transition: border-color 0.4s ease, transform 0.5s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.9) brightness(0.92);
  transition: transform 0.7s ease, filter 0.5s ease;
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 22, 40, 0) 35%, rgba(10, 22, 40, 0.55) 65%, rgba(10, 22, 40, 0.92) 100%);
  pointer-events: none;
}

.gallery-item figcaption {
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 1.4rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.gallery-tag {
  font-family: 'Manrope', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.gallery-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--cream);
  line-height: 1.25;
}

.gallery-item:hover {
  border-color: var(--line-strong);
  transform: translateY(-4px);
}

.gallery-item:hover img {
  transform: scale(1.04);
  filter: saturate(1) brightness(1);
}

/* ===== TRUST / CREDIBILITY ===== */
.trust {
  padding: 3rem 0 5rem;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  text-align: center;
}

.trust-item .trust-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.75rem;
  font-weight: 400;
}

.trust-item .trust-label {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--off-white);
  opacity: 0.8;
}

/* ===== HOW IT WORKS ===== */
.process {
  background: var(--navy-mid);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

.process-step {
  text-align: left;
  position: relative;
  padding-right: 1rem;
}

.process-step::after {
  content: '';
  position: absolute;
  top: 20px;
  right: -1rem;
  width: 2rem;
  height: 1px;
  background: var(--line-strong);
}

.process-step:last-child::after { display: none; }

.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1rem;
}

.process-step h4 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.process-step p {
  font-size: 0.9rem;
  opacity: 0.75;
  line-height: 1.6;
}

/* ===== BOOKING ===== */
.booking {
  position: relative;
}

.booking::before {
  content: '';
  position: absolute;
  top: 10%;
  left: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: start;
}

.booking-copy h2 {
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.booking-copy h2 em {
  font-style: italic;
  color: var(--gold);
}

.booking-copy p {
  color: var(--off-white);
  opacity: 0.8;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.contact-info {
  border-top: 1px solid var(--line);
  padding-top: 2rem;
  margin-top: 2rem;
}

.contact-row {
  display: flex;
  justify-content: space-between;
  padding: 0.85rem 0;
  border-bottom: 1px dashed var(--line);
  font-size: 0.9rem;
}

.contact-row span:first-child {
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 600;
}

.booking-form {
  background: var(--navy-mid);
  border: 1px solid var(--line);
  padding: 2.5rem;
  border-radius: 4px;
  position: relative;
}

.form-corner {
  position: absolute;
  width: 20px;
  height: 20px;
  border: 1px solid var(--gold);
}

.form-corner.tl { top: -1px; left: -1px; border-right: none; border-bottom: none; }
.form-corner.tr { top: -1px; right: -1px; border-left: none; border-bottom: none; }
.form-corner.bl { bottom: -1px; left: -1px; border-right: none; border-top: none; }
.form-corner.br { bottom: -1px; right: -1px; border-left: none; border-top: none; }

.form-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-style: italic;
  margin-bottom: 0.25rem;
  color: var(--gold);
}

.form-sub {
  font-size: 0.85rem;
  opacity: 0.7;
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  background: var(--navy-deep);
  border: 1px solid var(--line);
  color: var(--cream);
  padding: 0.9rem 1rem;
  font-family: 'Manrope', sans-serif;
  font-size: 0.95rem;
  border-radius: 2px;
  transition: border-color 0.2s;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--gold);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-submit {
  width: 100%;
  background: var(--gold);
  color: var(--navy-deep);
  padding: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.85rem;
  border-radius: 2px;
  transition: all 0.2s;
  margin-top: 0.5rem;
}

.form-submit:hover {
  background: var(--gold-soft);
  transform: translateY(-1px);
}

.form-status {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--gold);
  text-align: center;
  min-height: 1.2rem;
}

/* ===== TESTIMONIAL ===== */
.testimonial {
  background: var(--navy-mid);
  border-top: 1px solid var(--line);
  padding: 5rem 0;
}

.testimonial-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 6rem;
  color: var(--gold);
  line-height: 1;
  opacity: 0.3;
  margin-bottom: -2rem;
}

.testimonial blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.4;
  color: var(--cream);
  margin-bottom: 2rem;
}

.testimonial-author {
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ===== FOOTER ===== */
footer {
  background: var(--navy-deep);
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

footer h5 {
  font-family: 'Manrope', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  font-weight: 600;
}

footer ul { list-style: none; }
footer li { margin-bottom: 0.6rem; font-size: 0.9rem; opacity: 0.8; }
footer li a:hover { color: var(--gold); }

.footer-brand p {
  font-size: 0.9rem;
  opacity: 0.7;
  margin-top: 1rem;
  line-height: 1.7;
  max-width: 320px;
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  opacity: 0.6;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero .eyebrow { animation: fadeUp 0.7s 0.1s both; }
.hero h1 { animation: fadeUp 0.8s 0.2s both; }
.hero-sub { animation: fadeUp 0.8s 0.35s both; }
.hero-actions { animation: fadeUp 0.8s 0.5s both; }
.hero-card-1 { animation: fadeUp 0.9s 0.6s both; }
.hero-card-2 { animation: fadeUp 0.9s 0.75s both; }
.hero-card-3 { animation: fadeUp 0.9s 0.9s both; }

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { height: 380px; margin-top: 2rem; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .gallery-item { aspect-ratio: 16 / 10; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
  .process-step::after { display: none; }
  .booking-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .nav-links { display: none; }
  .mobile-toggle { display: block; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--navy-mid);
    flex-direction: column;
    padding: 1.5rem 2rem;
    border: 1px solid var(--line);
    gap: 1.25rem;
    min-width: 220px;
  }
}

@media (max-width: 600px) {
  .container { padding: 0 1.25rem; }
  section { padding: 4.5rem 0; }
  .form-row { grid-template-columns: 1fr; }
  .hero { padding: 7rem 0 3rem; }
  .hero-visual { display: none; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 200;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1.15rem 0.85rem 0.95rem;
  background: #25D366;
  color: #0A1628;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border-radius: 999px;
  box-shadow:
    0 10px 30px rgba(37, 211, 102, 0.35),
    0 2px 6px rgba(0, 0, 0, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow:
    0 14px 38px rgba(37, 211, 102, 0.45),
    0 4px 10px rgba(0, 0, 0, 0.3);
}

.whatsapp-float svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .whatsapp-float {
    bottom: 1.1rem;
    right: 1.1rem;
    padding: 0.85rem;
  }
  .whatsapp-float .whatsapp-label { display: none; }
}
