@import "tailwindcss" source("../");

/* ─── Reset & Base ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black: #0d0d0d;
  --off-black: #1a1a1a;
  --dark: #222222;
  --mid: #4a4a4a;
  --soft: #7a7a7a;
  --border: #e8e4de;
  --cream: #f9f6f2;
  --light: #ffffff;
  --gold: #b89b72;
  --gold-light: #d4b896;
  --green: #25d366;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --radius: 4px;
  --radius-lg: 12px;
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 40px rgba(0,0,0,0.10);
  --shadow-lg: 0 24px 80px rgba(0,0,0,0.14);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--off-black);
  background: var(--light);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── WhatsApp Button ───────────────────────────────────────────────────────── */
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green);
  color: #fff;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  padding: 14px 28px;
  border-radius: 100px;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  white-space: nowrap;
}




.whatsapp-btn:hover {
  background: #1ebe5a;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.45);
}

.whatsapp-btn--lg {
  font-size: 1rem;
  padding: 17px 36px;
}

/* ─── Header ────────────────────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 24px 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

.site-header--scrolled {
  background: rgba(13, 13, 13, 0.96);
  backdrop-filter: blur(12px);
  padding: 14px 0;
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

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

.logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.04em;
}

.logo span { color: var(--gold); }
.logo--footer { color: var(--cream); }

.main-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color var(--transition);
}

.nav-link:hover { color: #fff; }

.nav-cta {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 9px 22px;
  border-radius: 100px;
  transition: var(--transition);
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--black);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: #fff;
  transition: var(--transition);
  transform-origin: center;
}

.menu-toggle--open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle--open span:nth-child(2) { opacity: 0; }
.menu-toggle--open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ─── Hero ──────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,13,13,0.92) 0%,
    rgba(13,13,13,0.65) 60%,
    rgba(13,13,13,0.80) 100%
  );
  z-index: 1;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 60% 50% at 70% 40%, rgba(184,155,114,0.12) 0%, transparent 70%),
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 60px,
      rgba(255,255,255,0.015) 60px,
      rgba(255,255,255,0.015) 61px
    );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 120px;
  padding-bottom: 80px;
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(3.2rem, 8vw, 6.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 28px;
}

.hero-headline em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.68);
  max-width: 500px;
  margin-bottom: 44px;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 72px;
}

.hero-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition), gap var(--transition);
}

.hero-link:hover { color: #fff; gap: 12px; }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  padding: 0 32px;
}

.hero-stat:first-child { padding-left: 0; }

.hero-stat-number {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 400;
  color: #fff;
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 4px;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.12);
}

.hero-scroll-cue {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 28px;
  height: 44px;
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 100px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.hero-scroll-cue span {
  display: block;
  width: 4px;
  height: 8px;
  border-radius: 100px;
  background: rgba(255,255,255,0.5);
  animation: scrollCue 2s ease-in-out infinite;
}

@keyframes scrollCue {
  0%, 100% { transform: translateY(0); opacity: 0.6; }
  50% { transform: translateY(10px); opacity: 0.15; }
}

/* ─── Section Shared ─────────────────────────────────────────────────────────── */
.section { padding: 100px 0; }
.section--light { background: var(--light); }
.section--dark { background: var(--off-black); }
.section--cream { background: var(--cream); }

.section-eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-eyebrow--light { color: var(--gold); }
.section-eyebrow--gold { color: var(--gold); }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--off-black);
  margin-bottom: 20px;
}

.section-title--light { color: var(--cream); }

.section-subtitle {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--soft);
  max-width: 540px;
  margin-bottom: 60px;
}

/* ─── Services ───────────────────────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.service-icon {
  font-size: 1.8rem;
  margin-bottom: 24px;
  color: var(--gold);
  font-family: monospace;
}

.service-name {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--off-black);
  margin-bottom: 16px;
}

.service-desc {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--mid);
  margin-bottom: 24px;
  flex: 1;
}

.service-list {
  list-style: none;
  margin-bottom: 28px;
}

.service-list li {
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--soft);
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-list li::before {
  content: '';
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.service-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
}

.service-price {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--off-black);
}

.service-book {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  transition: color var(--transition);
}

.service-book:hover { color: var(--off-black); }

/* ─── About ──────────────────────────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual { position: relative; }

.about-image-wrap {
  position: relative;
  height: 560px;
}

.about-image-block {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image-block--1 {
  width: 72%;
  height: 78%;
  top: 0;
  left: 0;
}

.about-image-block--2 {
  width: 52%;
  height: 52%;
  bottom: 0;
  right: 0;
  border: 4px solid var(--off-black);
}

.about-img-placeholder--1 {
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    #2a2220 0%,
    #3d3028 50%,
    #2a2220 100%
  );
  position: relative;
  overflow: hidden;
}

.about-img-placeholder--1::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 20px,
    rgba(184,155,114,0.07) 20px,
    rgba(184,155,114,0.07) 21px
  );
}

.about-img-placeholder--2 {
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    #1e2a28 0%,
    #2a3830 50%,
    #1e2a28 100%
  );
}

.about-badge {
  position: absolute;
  top: 55%;
  right: 5%;
  transform: translateY(-50%);
  width: 90px;
  height: 90px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(184,155,114,0.4);
  z-index: 10;
}

.about-badge-number {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--black);
  line-height: 1;
}

.about-badge-text {
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
  text-align: center;
  line-height: 1.2;
  margin-top: 2px;
}

.about-text {
  font-size: 0.97rem;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(249,246,242,0.72);
  margin-bottom: 20px;
}

/* ─── Gallery ────────────────────────────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 260px 260px;
  gap: 16px;
  margin-bottom: 40px;
}

.gallery-item { border-radius: var(--radius-lg); overflow: hidden; }
.gallery-item--tall { grid-row: span 2; }
.gallery-item--wide { grid-column: span 2; }

.gallery-placeholder {
  width: 100%;
  height: 100%;
  background: hsl(calc(var(--hue) * 1deg), 18%, 82%);
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  transition: transform var(--transition);
  cursor: pointer;
  overflow: hidden;
}

.gallery-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.45) 0%, transparent 50%);
}

.gallery-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 40px,
    rgba(255,255,255,0.04) 40px,
    rgba(255,255,255,0.04) 41px
  );
}

.gallery-item:hover .gallery-placeholder {
  transform: scale(1.03);
}

.gallery-label {
  position: relative;
  z-index: 1;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
}

.gallery-note {
  text-align: center;
  font-size: 0.88rem;
  color: var(--soft);
}

.gallery-ig-link {
  color: var(--gold);
  font-weight: 500;
  transition: color var(--transition);
}

.gallery-ig-link:hover { color: var(--off-black); }

/* ─── Testimonials ───────────────────────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 20px;
}

.testimonial-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
}

.testimonial-text {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.8;
  color: var(--dark);
  flex: 1;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--black);
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--off-black);
}

.testimonial-meta {
  font-size: 0.78rem;
  color: var(--soft);
  margin-top: 2px;
}

/* ─── CTA Section ────────────────────────────────────────────────────────────── */
.cta-section {
  position: relative;
  background: var(--black);
  text-align: center;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(184,155,114,0.12) 0%, transparent 70%),
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 60px,
      rgba(255,255,255,0.012) 60px,
      rgba(255,255,255,0.012) 61px
    );
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.cta-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 24px;
}

.cta-sub {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,0.6);
  margin-bottom: 40px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.cta-note {
  margin-top: 20px;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.3);
}

/* ─── Contact ────────────────────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 36px;
  margin: 36px 0;
}

.contact-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}

.contact-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.contact-value {
  font-size: 0.94rem;
  color: var(--dark);
  line-height: 1.5;
}

.contact-link {
  transition: color var(--transition);
}

.contact-link:hover { color: var(--gold); }

.contact-hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  color: var(--dark);
  padding: 5px 0;
  border-bottom: 1px solid var(--border);
  gap: 20px;
}

.hours-closed { color: var(--soft); }

.map-placeholder {
  height: 400px;
  background: var(--cream);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--soft);
  text-align: center;
}

.map-placeholder svg { color: var(--gold); margin-bottom: 8px; }

.map-placeholder p {
  font-size: 0.9rem;
  color: var(--mid);
}

.map-link {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--gold);
  margin-top: 8px;
  transition: color var(--transition);
}

.map-link:hover { color: var(--off-black); }

/* ─── Footer ─────────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--black);
  padding: 56px 0 40px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}

.footer-tagline {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.35);
  margin-top: 6px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.footer-links a {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
}

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

.footer-copy {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.04em;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  width: 100%;
  text-align: center;
}

/* ─── Responsive ─────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-image-wrap { height: 420px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .site-header { padding: 18px 0; }

  .main-nav {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--black);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 99;
  }

  .main-nav--open { display: flex; }
  .nav-link { font-size: 1rem; }
  .nav-cta { font-size: 0.9rem; padding: 12px 28px; }

  .menu-toggle { display: flex; position: relative; z-index: 100; }

  .section { padding: 72px 0; }

  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .hero-stats { gap: 12px; }
  .hero-stat { padding: 0 16px; }
  .hero-stat:first-child { padding-left: 0; }

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

  .gallery-item--tall { grid-row: span 1; }
  .gallery-item--wide { grid-column: span 2; }

  .gallery-placeholder { min-height: 180px; }

  .about-image-wrap { height: 340px; }

  .map-placeholder { height: 280px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .hero-stat-divider { width: 40px; height: 1px; }

  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item--wide { grid-column: span 1; }
  .gallery-placeholder { min-height: 200px; }
}
.fade-in{opacity:0;transform:translateY(28px);transition:opacity .7s ease,transform .7s ease}.fade-in.visible{opacity:1;transform:translateY(0)}
