/* ================================
   DESIGN TOKENS
================================ */
:root {
  --cream: #faf8f5;
  --beige: #ede8e1;
  --sand: #b5a08a;
  --sand-dark: #8b7355;
  --dark: #2c2826;
  --muted: #6e6460;
  --light: #d4ccc2;
  --white: #ffffff;
  --wa: #25d366;
  --wa-dark: #1da851;

  --font-serif: "Playfair Display", Georgia, serif;
  --font-sans: "DM Sans", system-ui, -apple-system, sans-serif;

  --radius: 14px;
  --shadow: 0 6px 24px rgba(44, 40, 38, 0.07);
  --shadow-hover: 0 14px 40px rgba(44, 40, 38, 0.13);

  --max-w: 1200px;
  --section-py: 5.5rem;
}

/* ================================
   RESET
================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--cream);
  color: var(--dark);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ================================
   SHARED UTILITIES
================================ */
.section-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
}

.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 0.75rem;
}

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

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 400;
  color: var(--dark);
  line-height: 1.2;
}

.section-subtitle {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 1rem;
  max-width: 52ch;
  margin-left: auto;
  margin-right: auto;
}

/* ================================
   BUTTONS
================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0.85rem 1.75rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all 0.22s ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.btn--wa {
  background-color: var(--wa);
  color: #fff;
}
.btn--wa:hover {
  background-color: var(--wa-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.35);
}

.btn--outline {
  border: 1.5px solid var(--sand);
  color: var(--sand-dark);
  background: transparent;
}
.btn--outline:hover {
  background-color: var(--sand);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--outline-dark {
  border: 1.5px solid var(--dark);
  color: var(--dark);
  background: transparent;
}
.btn--outline-dark:hover {
  background-color: var(--dark);
  color: var(--cream);
  transform: translateY(-2px);
}

/* ================================
   NAV
================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.5rem 2rem;
  transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}

.nav--scrolled {
  background: rgba(250, 248, 245, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 1rem 2rem;
  box-shadow: 0 1px 0 rgba(44, 40, 38, 0.08);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-links a {
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--dark);
}

.nav-brand {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--dark);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ================================
   HERO
================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--cream);
}

.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 7rem 2rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  height: 72vh;
  object-fit: cover;
  border-radius: var(--radius);
}

/* Editorial decorative frame */
.hero-image::before {
  content: "";
  position: absolute;
  inset: -1.5rem 1.5rem 1.5rem -1.5rem;
  border: 1px solid var(--light);
  border-radius: var(--radius);
  z-index: -1;
  pointer-events: none;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hero-content .eyebrow {
  margin-bottom: 1rem;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 400;
  line-height: 1.22;
  color: var(--dark);
  margin-bottom: 1.5rem;
}

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

.hero-body {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 2.5rem;
  max-width: 38ch;
  line-height: 1.7;
}

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

/* ================================
   TRUST BAR
================================ */
.trust-bar {
  background-color: var(--dark);
  color: var(--light);
  padding: 1rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6rem 1.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.trust-dot {
  color: var(--sand);
  opacity: 0.6;
}

/* ================================
   SERVICES SECTION
================================ */
.services-section {
  padding: var(--section-py) 2rem;
}

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

/* Cards with image */
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.card-img {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  max-height: 260px;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.service-card:hover .card-img img {
  transform: scale(1.05);
}

.card-body {
  padding: 1.5rem 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.6rem;
}

.card-body h3 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
}

.card-body > p {
  font-size: 0.88rem;
  color: var(--muted);
}

.card-body ul {
  list-style: none;
  flex: 1;
  margin-top: 0.25rem;
}

.card-body ul li {
  font-size: 0.85rem;
  color: #4b4541;
  padding: 0.35rem 0 0.35rem 1.2rem;
  position: relative;
  border-bottom: 1px solid var(--beige);
}

.card-body ul li:last-child {
  border-bottom: none;
}

.card-body ul li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--sand);
  font-size: 0.75rem;
  line-height: 1.8;
}

.card-cta {
  margin-top: 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--sand-dark);
  letter-spacing: 0.04em;
  transition: color 0.2s, letter-spacing 0.2s;
  align-self: flex-start;
}

.card-cta:hover {
  color: var(--dark);
  letter-spacing: 0.09em;
}

/* Flat service cards (no image) */
.service-card--flat {
  padding: 2rem 2rem 1.75rem;
}

.card-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  display: block;
}

.service-card--flat h3 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.service-card--flat > p {
  font-size: 0.88rem;
  color: var(--muted);
  flex: 1;
  line-height: 1.6;
}

/* Last flat card spans full width on a 3-col grid */
.service-card--wide {
  grid-column: 1 / -1;
  flex-direction: row;
  align-items: center;
  gap: 2rem;
}

.service-card--wide .card-icon {
  font-size: 2.5rem;
  margin-bottom: 0;
  flex-shrink: 0;
}

.service-card--wide h3 {
  margin-bottom: 0.4rem;
}

/* ================================
   ABOUT SECTION
================================ */
.about-section {
  background-color: var(--beige);
  padding: var(--section-py) 2rem;
}

.about-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-image img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.about-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 400;
  line-height: 1.2;
}

.about-content h2 em {
  font-style: italic;
  color: var(--sand-dark);
}

.about-content p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

/* ================================
   REVIEWS SECTION
================================ */
.reviews-section {
  padding: var(--section-py) 2rem;
}

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

.review {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem 2rem 2rem;
  border-left: 3px solid var(--sand);
  box-shadow: var(--shadow);
}

.review p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 1.25rem;
  line-height: 1.55;
}

.review cite {
  font-size: 0.75rem;
  font-style: normal;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sand);
  font-weight: 500;
}

/* ================================
   CONTACT SECTION
================================ */
.contact-section {
  background-color: var(--dark);
  padding: var(--section-py) 2rem;
}

.contact-section .eyebrow {
  color: var(--sand);
}

.contact-section .section-title {
  color: var(--white);
}

.contact-section .section-subtitle {
  color: rgba(212, 204, 194, 0.8);
}

.contact-channels {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.channel {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 1.75rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  color: var(--white);
  cursor: pointer;
  transition: background 0.22s ease, transform 0.22s ease;
}

.channel:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(6px);
}

.channel-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.channel-icon svg {
  width: 22px;
  height: 22px;
}

.channel--wa .channel-icon {
  background: rgba(37, 211, 102, 0.18);
  color: var(--wa);
}

.channel--email .channel-icon {
  background: rgba(181, 160, 138, 0.2);
  color: var(--sand);
}

.channel--calendly .channel-icon {
  background: rgba(255, 255, 255, 0.1);
  color: var(--light);
}

.channel-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.channel-text strong {
  font-size: 0.95rem;
  font-weight: 600;
}

.channel-text span {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
}

.channel-arrow {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.2s, transform 0.2s;
}

.channel:hover .channel-arrow {
  color: rgba(255, 255, 255, 0.85);
  transform: translateX(4px);
}

/* ================================
   FLOATING WHATSAPP BUTTON
================================ */
.fab-wa {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 58px;
  height: 58px;
  background: var(--wa);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.5);
  z-index: 200;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.fab-wa svg {
  width: 28px;
  height: 28px;
}

/* ================================
   FOOTER
================================ */
.footer {
  background: var(--cream);
  border-top: 1px solid var(--beige);
  padding: 3rem 2rem 2.5rem;
  text-align: center;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.footer-brand {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 0.4rem;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.footer-links a {
  transition: color 0.2s;
}

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

.footer-credit {
  font-size: 0.75rem;
  color: var(--light);
}

.footer-studio-link {
  font-weight: 600;
  color: var(--sand);
  letter-spacing: 0.03em;
  transition: color 0.2s;
}

.footer-studio-link:hover {
  color: var(--sand-dark);
}

/* ================================
   RESPONSIVE — 1024px
================================ */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card--wide {
    grid-column: span 1;
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-inner {
    gap: 3.5rem;
  }
}

/* ================================
   RESPONSIVE — 768px
================================ */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-brand {
    font-size: 0.95rem;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding: 7rem 1.5rem 3.5rem;
    gap: 2.5rem;
  }

  .hero-image img {
    height: 60vw;
  }

  .hero-image::before {
    display: none;
  }

  .hero-body {
    max-width: 100%;
  }

  .trust-bar {
    display: none;
  }

  .services-section,
  .about-section,
  .reviews-section,
  .contact-section {
    padding: 3.5rem 1.5rem;
  }

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

  .card-img {
    aspect-ratio: unset;
    width: 100%;
    height: 220px;
    max-height: none;
  }

  .service-card--wide {
    grid-column: 1;
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

  .fab-wa {
    bottom: 1.25rem;
    right: 1.25rem;
    width: 52px;
    height: 52px;
  }
}
