/* =========================
   Fonts & Variables
========================= */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500&display=swap');

:root {
  --cream: #fdf8f4;
  --cream-dark: #f5ede5;
  --white: #ffffff;
  --ink: #1c1410;
  --ink-soft: #4a3c35;
  --muted: #9a8880;
  --rose: #c9b08a;
  --rose-light: #e7d7bf;
  --rose-deep: #b89a6f;
  --gold: #c9b08a;
  --gold-light: #eadfcf;
  --border: rgba(100, 70, 60, 0.1);
  --shadow-soft: 0 4px 24px rgba(80, 50, 40, 0.08);
  --shadow-med: 0 12px 48px rgba(80, 50, 40, 0.12);
  --shadow-deep: 0 24px 72px rgba(80, 50, 40, 0.18);
  --radius: 20px;
  --radius-lg: 32px;
  --container: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* =========================
   Reset & Base
========================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--ink-soft);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

h1,
h2,
h3 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--ink);
  line-height: 1;
}

/* =========================
   Grain overlay
========================= */
.grain {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px;
}

/* =========================
   Container
========================= */
.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.section {
  padding: 90px 0;
}

/* =========================
   Label / eyebrow
========================= */
.label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--rose);
  margin-bottom: 12px;
}

/* =========================
   Header
========================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0;
  background: rgba(253, 248, 244, 0.85);
  backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 16px;
}

.brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.04em;
  line-height: 1;
  flex-shrink: 0;
}

.logo {
  height: 50px;
  width: auto;
  display: block;
}

.nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.25s;
}

.nav a:hover {
  color: var(--ink);
}

/* =========================
   Hero
========================= */
.hero {
  position: relative;
  padding: 80px 0 0;
  overflow: hidden;
}

.hero-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 132, 143, 0.22) 0%, transparent 70%);
  top: -100px;
  right: -100px;
}

.orb-2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(200, 168, 130, 0.18) 0%, transparent 70%);
  bottom: 0;
  left: -80px;
}

.orb-3 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 132, 143, 0.15) 0%, transparent 70%);
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose-deep);
  background: rgba(201, 132, 143, 0.1);
  border: 1px solid rgba(201, 132, 143, 0.2);
  border-radius: 999px;
  padding: 6px 16px;
  margin-bottom: 28px;
}

.hero-headline {
  font-size: clamp(4.2rem, 12vw, 8.5rem);
  font-weight: 300;
  color: var(--ink);
  line-height: 0.88;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}

.hero-headline em {
  font-style: italic;
  color: var(--rose);
  display: block;
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  font-weight: 300;
  color: var(--ink-soft);
  margin-bottom: 36px;
  line-height: 1.7;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 40px;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 60px;
  max-width: 720px;
}

.pill {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  background: rgba(100, 70, 60, 0.06);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 5px 14px;
}

.hero-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 20px;
  padding-bottom: 0;
  color: var(--gold);
  font-size: 0.85rem;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
}

/* =========================
   Buttons
========================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s;
  cursor: pointer;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-deep) 100%);
  color: white;
  box-shadow: 0 8px 28px rgba(168, 100, 112, 0.3);
}

.btn-primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.15) 35%,
    rgba(255, 255, 255, 0.45) 50%,
    rgba(255, 255, 255, 0.15) 65%,
    transparent 100%
  );
  transform: skewX(-20deg);
  transition: left 0.8s ease;
}

.btn-primary:hover::after {
  left: 140%;
}

.btn-ghost {
  background: transparent;
  color: var(--ink-soft);
  border: none;
  padding-left: 0;
}

.btn-ghost:hover {
  color: var(--ink);
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--ink);
}

.btn-outline:hover {
  background: rgba(100, 70, 60, 0.04);
}

/* =========================
   Services
========================= */
.services {
  position: relative;
}

.services-header {
  margin-bottom: 48px;
}

.services-header h2 {
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 300;
  letter-spacing: -0.02em;
}

.services-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  height: 100%;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-med);
}

.service-card-inner {
  padding: 36px 32px;
  height: 100%;
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}

.service-card h3 {
  font-size: 2.8rem;
  font-weight: 300;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.service-list {
  list-style: none;
  border-top: 1px solid var(--border);
  margin-bottom: 28px;
}

.service-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--ink-soft);
}

.service-list li::after {
  content: '→';
  color: var(--rose-light);
  font-size: 0.85rem;
  transition: transform 0.2s;
  flex-shrink: 0;
}

.service-card:hover .service-list li::after {
  transform: translateX(3px);
}

.card-cta {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rose-deep);
  border-bottom: 1px solid rgba(168, 100, 112, 0.3);
  padding-bottom: 2px;
  transition: border-color 0.25s, color 0.25s;
}

.card-cta:hover {
  color: var(--rose);
  border-color: var(--rose);
}

/* =========================
   Quote band
========================= */
.quote-band {
  position: relative;
  padding: 64px 0;
  background: linear-gradient(135deg, var(--ink) 0%, #2e1f1a 100%);
  overflow: hidden;
}

.quote-band::before {
  content: '"';
  position: absolute;
  left: -20px;
  top: -60px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 30rem;
  color: rgba(255, 255, 255, 0.03);
  line-height: 1;
  pointer-events: none;
}

.quote-band blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 5vw, 3rem);
  font-style: italic;
  font-weight: 300;
  color: var(--cream);
  line-height: 1.3;
  max-width: 800px;
}

/* =========================
   Contact
========================= */
.contact {
  position: relative;
  overflow: hidden;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-med);
  padding: 48px 36px;
  max-width: 760px;
  position: relative;
  z-index: 1;
}

.contact-card h2 {
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.contact-text {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 0;
  line-height: 1.7;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin: 28px 0;
}

.contact-meta {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.meta-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  min-width: 72px;
}

/* =========================
   Floating WhatsApp
========================= */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1000;
  background: #25d366;
  color: white;
  border-radius: 999px;
  padding: 0 20px 0 14px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.3);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(37, 211, 102, 0.4);
}

/* =========================
   Footer
========================= */
.footer {
  border-top: 1px solid var(--border);
  padding: 28px 0;
  background: var(--cream);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.footer-copy {
  font-size: 0.78rem;
  color: var(--muted);
}

/* =========================
   Reveal animation
========================= */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-tag.visible {
  transition-delay: 0s;
}

.hero-headline.visible {
  transition-delay: 0.08s;
}

.hero-sub.visible {
  transition-delay: 0.16s;
}

.hero-actions.visible {
  transition-delay: 0.24s;
}

.hero-pills.visible {
  transition-delay: 0.32s;
}

/* =========================
   Responsive
========================= */
@media (min-width: 620px) {
  .hero-actions,
  .contact-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media (min-width: 760px) {
  .container {
    width: min(calc(100% - 48px), var(--container));
  }

  .hero {
    padding: 100px 0 0;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-meta {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px;
  }
}

@media (min-width: 960px) {
  .container {
    width: min(calc(100% - 64px), var(--container));
  }

  .header-inner {
    min-height: 78px;
  }

  .logo {
    height: 58px;
  }

  .nav {
    gap: 28px;
  }

  .hero {
    min-height: 88vh;
    display: flex;
    align-items: center;
  }

  .hero-inner {
    max-width: 820px;
    padding: 40px 0 70px;
  }

  .hero-headline {
    font-size: clamp(5.5rem, 9vw, 9rem);
  }

  .hero-sub {
    max-width: 560px;
    font-size: 1.08rem;
  }

  .hero-pills {
    gap: 10px;
  }

  .service-card-inner {
    padding: 42px 36px;
  }

  .contact-card {
    max-width: 860px;
    padding: 56px 48px;
  }

  .contact-meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }

  .meta-item {
    display: block;
  }

  .meta-label {
    display: block;
    margin-bottom: 6px;
    min-width: 0;
  }

  .footer-inner {
    gap: 24px;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 6px 0;
  }

  .header-inner {
    min-height: 60px;
  }

  .logo {
    height: 42px;
  }

  .nav {
    gap: 14px;
  }

  .nav a {
    font-size: 0.72rem;
    letter-spacing: 0.08em;
  }

  .hero-headline {
    font-size: clamp(3.8rem, 18vw, 5.5rem);
  }

  .service-card h3 {
    font-size: 2.2rem;
  }

  .service-card-inner,
  .contact-card {
    padding: 30px 22px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    height: 48px;
    padding: 0 16px 0 12px;
    font-size: 0.8rem;
  }
}