:root {
  --cream: #f5f0e8;
  --ivory: #faf7f2;
  --warm-dark: #1a1410;
  --gold: #c9a96e;
  --gold-light: #e8d5b0;
  --text: #2c2416;
  --text-muted: #7a6a54;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Jost', sans-serif;
  background: var(--ivory);
  color: var(--text);
  overflow-x: hidden;
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 1.5rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(250, 247, 242, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 169, 110, 0.2);
  transition: all 0.4s ease;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--text);
  text-decoration: none;
}

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

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
}

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

/* ── HAMBURGER ── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  z-index: 200;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--text);
  transform-origin: center;
  transition: transform 0.35s ease, opacity 0.35s ease, width 0.35s ease;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  width: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* ── MOBILE MENU OVERLAY ── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: var(--warm-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.mobile-menu.open {
  visibility: visible;
  opacity: 1;
}

.mobile-menu.open+#navbar {
  z-index: 999;
  background-color: var(--warm-dark);
}

.mobile-menu.open+#navbar .nav-logo {
  color: var(--cream);
}

.mobile-menu.open+#navbar .hamburger span {
  background: var(--cream);
}

.mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 8vw, 3.5rem);
  font-weight: 300;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: 0.05em;
  padding: 0.6rem 2rem;
  display: block;
  position: relative;
  overflow: hidden;
  transform: translateY(20px);
  opacity: 0;
  transition: color 0.3s, transform 0.4s ease, opacity 0.4s ease;
}

.mobile-menu.open a {
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu.open a:nth-child(1) {
  transition-delay: 0.1s;
}

.mobile-menu.open a:nth-child(2) {
  transition-delay: 0.18s;
}

.mobile-menu.open a:nth-child(3) {
  transition-delay: 0.26s;
}

.mobile-menu.open a:nth-child(4) {
  transition-delay: 0.34s;
}

.mobile-menu a::after {
  content: '';
  position: absolute;
  bottom: 0.4rem;
  left: 2rem;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s ease;
}

.mobile-menu a:hover {
  color: var(--gold);
}

.mobile-menu a:hover::after {
  width: calc(100% - 4rem);
}

.mobile-menu-contact {
  margin-top: 3rem;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.3);
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.4s ease 0.42s, opacity 0.4s ease 0.42s;
}

.mobile-menu.open .mobile-menu-contact {
  transform: translateY(0);
  opacity: 1;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.hero-left {
  padding: 10rem 4rem 6rem 8rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.hero-tag {
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5vw, 5.5rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.4s forwards;
}

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

.hero-desc {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 420px;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.6s forwards;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  align-items: center;
  opacity: 0;
  animation: fadeUp 0.8s 0.8s forwards;
}

.btn-primary {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--warm-dark);
  color: var(--cream);
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: -1;
}

.btn-primary:hover {
  color: var(--warm-dark);
}

.btn-primary:hover::after {
  transform: scaleX(1);
}

.btn-secondary {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  border-bottom: 1px solid var(--gold-light);
  padding-bottom: 2px;
  transition: color 0.3s, border-color 0.3s;
}

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

.hero-right {
  position: relative;
  background: var(--cream);
  overflow: hidden;
}

.hero-image-wrap {
  position: absolute;
  inset: 0;
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: fadeIn 1.2s 0.5s forwards;
  filter: sepia(15%) saturate(90%);
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--ivory) 0%, transparent 30%);
  z-index: 1;
}

.hero-stat {
  position: absolute;
  bottom: 3rem;
  right: 3rem;
  z-index: 2;
  text-align: right;
  opacity: 0;
  animation: fadeUp 0.8s 1s forwards;
}

.hero-stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  font-weight: 300;
  color: var(--warm-dark);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── DIVIDER ── */
.divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 4rem;
}

/* ── SERVICES ── */
.services {
  padding: 8rem 8rem;
  background: var(--warm-dark);
  color: var(--cream);
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-tag {
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--cream);
}

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

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(201, 169, 110, 0.15);
}

.service-card {
  background: var(--warm-dark);
  padding: 3rem 2.5rem;
  transition: background 0.4s ease;
  cursor: default;
}

.service-card:hover {
  background: rgba(201, 169, 110, 0.08);
}

.service-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: rgba(201, 169, 110, 0.2);
  line-height: 1;
  margin-bottom: 1.5rem;
}

.service-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 1rem;
}

.service-desc {
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(245, 240, 232, 0.55);
}

/* ── ABOUT ── */
.about {
  padding: 8rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-image-frame {
  position: relative;
  aspect-ratio: 3/4;
  background: var(--cream);
  overflow: hidden;
}

.about-image-frame::before {
  content: '';
  position: absolute;
  top: -1.5rem;
  left: -1.5rem;
  right: 1.5rem;
  bottom: 1.5rem;
  border: 1px solid var(--gold-light);
  z-index: 0;
}

.about-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
  filter: sepia(10%) saturate(90%);
}

.about-badge {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  z-index: 2;
  background: var(--gold);
  color: var(--warm-dark);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
}

.about-badge-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1;
}

.about-badge-text {
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.3;
  margin-top: 0.2rem;
}

.about-content .section-tag {
  text-align: left;
}

.about-content .section-title {
  color: var(--text);
  text-align: left;
  margin-bottom: 2rem;
}

.about-text {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.about-text:last-of-type {
  margin-bottom: 2.5rem;
}

/* ── TESTIMONIALS ── */
.testimonials {
  background: var(--cream);
  padding: 8rem;
}

.testimonials .section-title {
  color: var(--text);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: var(--ivory);
  padding: 2.5rem;
  border-left: 2px solid var(--gold);
}

.testimonial-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 1.5rem;
}

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

/* ── CONTACT ── */
.contact {
  padding: 8rem;
  background: var(--ivory);
  text-align: center;
}

.contact .section-title {
  color: var(--text);
  margin-bottom: 1rem;
}

.contact-subtitle {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-muted);
  margin-bottom: 3.5rem;
}

.contact-form {
  max-width: 580px;
  margin: 0 auto;
}

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

.form-field {
  margin-bottom: 1rem;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 1rem 1.2rem;
  background: transparent;
  border: 1px solid var(--gold-light);
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text);
  outline: none;
  transition: border-color 0.3s;
  resize: none;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

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

.form-field textarea {
  height: 130px;
}

.form-submit {
  margin-top: 0.5rem;
}

.form-submit .btn-primary {
  width: 100%;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.contact-info {
  margin-top: 4rem;
  display: flex;
  justify-content: center;
  gap: 4rem;
}

.contact-item {
  text-align: center;
}

.contact-item-label {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
  display: block;
}

.contact-item-value {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text);
}

.contact-item-value a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}

.contact-item-value a:hover {
  color: var(--gold);
}

/* ── FOOTER ── */
.footer {
  background: var(--warm-dark);
  color: var(--cream);
  padding: 2.5rem 8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--cream);
}

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

.footer-copy {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: rgba(245, 240, 232, 0.35);
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

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

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .nav {
    padding: 1.5rem 2.5rem;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

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

  .hero-left {
    padding: 9rem 2.5rem 4rem;
  }

  .hero-right {
    height: 50vh;
  }

  .hero-image-overlay {
    background: linear-gradient(to bottom, var(--ivory) 0%, transparent 40%);
  }

  .services {
    padding: 5rem 2.5rem;
  }

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

  .about {
    padding: 5rem 2.5rem;
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .testimonials {
    padding: 5rem 2.5rem;
  }

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

  .contact {
    padding: 5rem 2.5rem;
  }

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

  .contact-info {
    flex-direction: column;
    gap: 2rem;
  }

  footer {
    padding: 2rem 2.5rem;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/**
 * Remove g recaptcha badge
 */

.grecaptcha-badge {
  display: none;
}

/* ===== WHATSAPP FLOATING BADGE ===== */
.wa-wrapper {
  position: fixed;
  bottom: 28px;
  right: 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  z-index: 9999;
  pointer-events: none;
}

/* Chat popup bubble */
.wa-popup {
  background: #fff;
  border-radius: 16px;
  padding: 16px 18px;
  width: 270px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  transform: scale(0.85) translateY(10px);
  transform-origin: bottom right;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.wa-popup.open {
  transform: scale(1) translateY(0);
  opacity: 1;
  pointer-events: all;
}

.wa-popup-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #f0f0f0;
}

.wa-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wa-avatar svg {
  width: 22px;
  height: 22px;
  fill: white;
}

.wa-agent-info {
  flex: 1;
}

.wa-agent-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: #111;
}

.wa-agent-status {
  font-size: 0.73rem;
  color: #25D366;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 2px;
}

.wa-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #25D366;
  animation: pulse 1.5s infinite;
}

.wa-close-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: #aaa;
  font-size: 1.2rem;
  padding: 2px;
  line-height: 1;
  transition: color 0.2s;
}

.wa-close-btn:hover {
  color: #555;
}

.wa-message-bubble {
  background: #f0faf4;
  border-radius: 0 12px 12px 12px;
  padding: 10px 14px;
  font-size: 0.83rem;
  color: #333;
  line-height: 1.5;
  margin-bottom: 14px;
  position: relative;
}

.wa-cta {
  display: block;
  background: #25D366;
  color: white;
  text-align: center;
  padding: 11px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  transition: background 0.2s, transform 0.15s;
}

.wa-cta:hover {
  background: #20ba5a;
  transform: translateY(-1px);
}

.wa-cta:active {
  transform: translateY(0);
}

/* Main FAB button */
.wa-fab {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  pointer-events: auto;
}

.wa-fab:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.65);
}

.wa-fab:active {
  transform: scale(0.96);
}

.wa-fab svg {
  width: 32px;
  height: 32px;
  fill: white;
  transition: transform 0.3s;
}

.wa-fab.open svg {
  transform: rotate(90deg) scale(0.85);
}

/* Notification badge */
.wa-notif {
  position: absolute;
  top: -3px;
  right: -3px;
  background: #ff3b30;
  color: white;
  font-size: 0.65rem;
  font-weight: 800;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid white;
  animation: bounce 2s infinite;
}

/* Ripple rings */
.wa-fab::before,
.wa-fab::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.5);
  width: 100%;
  height: 100%;
  animation: ripple 2.5s infinite;
}

.wa-fab::after {
  animation-delay: 1.2s;
}

@keyframes ripple {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-3px);
  }

  60% {
    transform: translateY(-1px);
  }
}