/* ===========================
   CSS Variables & Reset
   =========================== */
:root {
  /* Brand palette */
  --color-cream:    #f2d9b4;
  --color-gold:     #edc382;
  --color-burgundy: #781427;
  --color-wine:     #52141e;
  --color-espresso: #251919;

  /* Semantic aliases */
  --color-primary:       var(--color-burgundy);
  --color-primary-dark:  var(--color-wine);
  --color-primary-light: var(--color-burgundy);
  --color-accent:        var(--color-gold);
  --color-accent-dark:   var(--color-burgundy);
  --color-whatsapp:      #25d366;
  --color-whatsapp-dark: #1ebe5d;
  --color-text:          var(--color-espresso);
  --color-text-light:    rgba(37, 25, 25, 0.62);
  --color-bg:            var(--color-cream);
  --color-bg-alt:        #f5e3c5;   /* slightly richer cream for alternating sections */
  --color-bg-card:       #faf0dc;   /* near-white warm for cards */
  --color-border:        rgba(120, 20, 39, 0.14);

  /* Typography — Cormorant Garamond for display, Lora for reading */
  --font-serif: "Inter", Georgia, serif;
  --font-sans:  "Cormorant Garamond", Georgia, serif;

  /* Warm-tinted shadows — the key to "cozy" */
  --shadow-sm:   0 2px 10px  rgba(37, 25, 25, 0.08);
  --shadow-md:   0 6px 24px  rgba(37, 25, 25, 0.13);
  --shadow-lg:   0 14px 50px rgba(37, 25, 25, 0.18);
  --shadow-warm: 0 4px 20px  rgba(120, 20, 39, 0.14);
  --shadow-gold: 0 4px 20px  rgba(237, 195, 130, 0.35);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;

  --transition: 0.3s ease;
  --section-padding: 5.5rem 0;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.82;        /* Lora breathes well at slightly looser leading */
  font-size: 1rem;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ===========================
   Layout
   =========================== */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.75rem;
}

.section {
  padding: var(--section-padding);
}

/* ===========================
   Header & Navigation
   =========================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}

.header.scrolled {
  background: rgba(37, 25, 25, 0.96);
  box-shadow: 0 2px 20px rgba(37, 25, 25, 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

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

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--font-sans);
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
}

.nav__logo-img {
  height: 3rem;
  width: auto;
  transition: transform var(--transition);
}

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

.nav__menu {
  display: flex;
  gap: 2.25rem;
}

.nav__link {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.25px;
  position: relative;
  transition: color var(--transition);
}

.nav__link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transition: width var(--transition);
  border-radius: 2px;
}

.nav__link:hover,
.nav__link.active {
  color: #fff;
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

.nav__toggle {
  display: none;
  color: #fff;
  font-size: 1.4rem;
}

/* ===========================
   Buttons
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  transition: all var(--transition);
  cursor: pointer;
  letter-spacing: 0.2px;
}

.btn--primary {
  background: var(--color-gold);
  color: var(--color-espresso);
  box-shadow: var(--shadow-gold);
}

.btn--primary:hover {
  background: #ddb06a;
  color: var(--color-espresso);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(237, 195, 130, 0.5);
}

.btn--outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.85);
  transform: translateY(-2px);
}

.btn--whatsapp {
  background: var(--color-whatsapp);
  color: #fff;
  font-size: 1rem;
  padding: 0.9rem 1.75rem;
}

.btn--whatsapp:hover {
  background: var(--color-whatsapp-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn--full {
  width: 100%;
  justify-content: center;
}

/* ===========================
   Hero Section
   =========================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  /* Warm layered gradient: deep espresso → wine → burgundy with a gold warmth hint */
  background:
    radial-gradient(ellipse at 80% 50%, rgba(120, 20, 39, 0.55) 0%, transparent 65%),
    linear-gradient(155deg, var(--color-espresso) 0%, var(--color-wine) 55%, var(--color-burgundy) 100%);
  overflow: hidden;
}

/* Subtle warm texture — cross-hatch of fine dots */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(237, 195, 130, 0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

/* Warm vignette from bottom — grounds the section */
.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 35%;
  background: linear-gradient(to top, rgba(37, 25, 25, 0.45), transparent);
  pointer-events: none;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  /* A soft gold bloom top-left for warmth */
  background:
    radial-gradient(ellipse at 5% 5%, rgba(237, 195, 130, 0.12) 0%, transparent 45%);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 740px;
  padding-top: 5rem;
}

.hero__subtitle {
  font-family: var(--font-sans);        /* Lora italic for elegance */
  font-style: italic;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  letter-spacing: 0.5px;
  color: var(--color-gold);
  /* margin-bottom: 1.1rem; */
  opacity: 0.9;
}

.hero__subtitle2 {
  font-size: clamp(1.7rem, 4vw, 3.0rem);
}

.hero__title {
  font-family: var(--font-sans);
  /* Cormorant Garamond reads large — bump up the ceiling */
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 600;
  letter-spacing: -0.01em;   /* tighter tracking at display size */
  color: #fff;
  line-height: 1.08;
  margin-bottom: 1rem;
}

/* Decorative gold rule under the name — signals prestige */
.hero__title::after {
  content: "";
  display: block;
  width: 72px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold), rgba(237, 195, 130, 0.3));
  border-radius: 2px;
  margin-top: 0.85rem;
}

.hero__description {
  font-family: var(--font-serif);
  font-size: clamp(0.97rem, 2vw, 1.08rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 2.5rem;
  max-width: 540px;
  line-height: 1.9;   /* Lora's generous leading for comfortable reading */
}

.hero__buttons {
  font-family: var(--font-serif);
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero__scroll a {
  color: rgba(237, 195, 130, 0.55);
  font-size: 1.2rem;
  animation: bounce 2s infinite;
  transition: color var(--transition);
}

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

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(8px); }
}

/* ===========================
   Section Header
   =========================== */
.section__header {
  text-align: center;
  margin-bottom: 3.75rem;
}

.section__tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-style: italic;            /* Lora italic feels warm and personal */
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0.2px;
  color: var(--color-burgundy);
  background: rgba(120, 20, 39, 0.07);
  border: 1px solid rgba(120, 20, 39, 0.16);
  padding: 0.3rem 1rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.section__title {
  font-family: var(--font-sans);
  /* Cormorant Garamond optically larger — boost clamp */
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--color-wine);
  margin-bottom: 0.5rem;
  position: relative;
  display: inline-block;
}

.section__title::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold), rgba(237, 195, 130, 0.25));
  margin: 0.6rem auto 0;
  border-radius: 2px;
}

.section__subtitle {
  font-family: var(--font-sans);
  font-size: 1.2rem;
  font-style: italic;      /* Lora italic adds warmth to the subtitle */
  color: var(--color-text-light);
  max-width: 480px;
  margin: 0.85rem auto 0;
}

/* ===========================
   About Section
   =========================== */
.about {
  background: var(--color-bg);
  position: relative;
}

/* Warm decorative diagonal band behind the section */
.about::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 38%;
  height: 100%;
  background: rgba(237, 195, 130, 0.07);
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
  pointer-events: none;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.55fr;
  gap: 4.5rem;
  align-items: center;
  position: relative;
}

.about__image-wrapper {
  position: relative;
}

/* Decorative offset frame behind the photo */
.about__image-wrapper::before {
  content: "";
  position: absolute;
  top: 18px;
  left: -18px;
  right: 18px;
  bottom: -18px;
  border: 2px solid rgba(237, 195, 130, 0.45);
  border-radius: var(--radius-lg);
  pointer-events: none;
  z-index: 0;
}

.about__image-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(155deg, var(--color-wine) 0%, var(--color-burgundy) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

/* Subtle warm sheen inside photo placeholder */
.about__image-placeholder::after {
  content: "";
  position: absolute;
  top: -30%;
  left: -20%;
  width: 80%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(237, 195, 130, 0.14) 0%, transparent 70%);
  pointer-events: none;
}

.about__image-placeholder i {
  font-size: 6rem;
  color: rgba(255, 255, 255, 0.22);
}

.about__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

.about__name {
  font-family: var(--font-sans);
  font-size: 2.1rem;          /* Cormorant reads larger — push it up */
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--color-wine);
  margin-bottom: 1.1rem;
}

.about__text {
  font-family: var(--font-serif);
  color: var(--color-text-light);
  margin-bottom: 1.1rem;
  font-size: 0.97rem;
  line-height: 1.85;         /* Lora breathes well */
}

/* Warm pull-quote style on the second paragraph */
.about__text:last-of-type {
  padding-left: 1rem;
  border-left: 3px solid var(--color-gold);
  color: rgba(37, 25, 25, 0.72);
}

.about__stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
}

.about__stat {
  display: flex;
  flex-direction: column;
}

.about__stat-number {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
}

.about__stat-label {
  font-size: 0.76rem;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 0.3rem;
}

/* ===========================
   Areas Section
   =========================== */
.areas {
  /* Warm parchment alt — a touch darker than the main cream */
  background: var(--color-bg-alt);
  position: relative;
  overflow: hidden;
}

/* Large faint decorative circle — adds visual depth */
.areas::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  border: 2px solid rgba(120, 20, 39, 0.06);
  pointer-events: none;
}

.areas::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 2px solid rgba(237, 195, 130, 0.14);
  pointer-events: none;
}

/* 2×2 grid — balanced layout for 4 cards */
.areas__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.85rem;
  position: relative;
  z-index: 1;
}

.area-card {
  background: var(--color-bg-card);
  border-radius: var(--radius-md);
  padding: 2.25rem 2rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  border: 1px solid rgba(120, 20, 39, 0.08);
  border-bottom: 4px solid transparent;
  position: relative;
  overflow: hidden;
}

/* Subtle warm corner accent */
.area-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: radial-gradient(ellipse at top right, rgba(237, 195, 130, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.area-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-md), var(--shadow-warm);
  border-bottom-color: var(--color-gold);
}

.area-card__icon {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-sm);
  /* Warmer gradient icon background */
  background: linear-gradient(145deg, var(--color-wine) 0%, var(--color-burgundy) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
  box-shadow: 0 4px 14px rgba(120, 20, 39, 0.25);
}

.area-card__icon i {
  font-size: 1.35rem;
  color: var(--color-gold);
}

.area-card__title {
  font-family: var(--font-serif);
  font-size: 1.45rem;        /* Cormorant needs a bit more size to shine */
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--color-wine);
  margin-bottom: 0.15rem;
}

.area-card__subtitle {
  font-family: var(--font-serif);
  font-weight: 500;
  /* letter-spacing: -0.01em; */
  color: var(--color-wine);
  margin-bottom: 0.65rem;
}

.area-card__text {
  font-family: var(--font-serif);
  font-size: 0.92rem;
  color: var(--color-text-light);
  line-height: 1.8;
  padding-left: 1rem;
  border-left: 3px solid var(--color-gold);
  color: rgba(37, 25, 25, 0.72);
}

/* ===========================
   Contact Section
   =========================== */
.contact {
  background: var(--color-bg);
  position: relative;
}

/* Soft warm glow top-center */
.contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 200px;
  background: radial-gradient(ellipse, rgba(237, 195, 130, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.contact__grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  position: relative;
  z-index: 1;
}

.contact__info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  width: 100%;
  max-width: 700px;
}

/* Card-style contact items for more authority */
.contact__item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}

.contact__item:hover {
  box-shadow: var(--shadow-warm);
  transform: translateY(-3px);
}

.contact__item-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  background: linear-gradient(145deg, var(--color-wine) 0%, var(--color-burgundy) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(120, 20, 39, 0.2);
}

.contact__item-icon i {
  font-size: 1.2rem;
  color: var(--color-gold);
}

.contact__item-icon .fa-whatsapp {
  color: var(--color-whatsapp);
  font-size: 1.45rem;
}

.contact__item-content h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.15rem;       /* Cormorant needs a bit more to read clearly */
  letter-spacing: -0.01em;
  color: var(--color-wine);
  margin-bottom: 0.25rem;
}

.contact__item-content p {
  font-family: var(--font-serif);
  font-size: 0.88rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* Form */
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form__label {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--color-wine);
}

.form__input {
  padding: 0.78rem 1rem;
  border: 1.5px solid rgba(120, 20, 39, 0.18);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--color-text);
  background: var(--color-bg-card);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}

.form__input:focus {
  border-color: var(--color-burgundy);
  box-shadow: 0 0 0 3px rgba(120, 20, 39, 0.1);
}

.form__input.error {
  border-color: #c0392b;
}

.form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23781427' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  cursor: pointer;
}

.form__textarea {
  resize: vertical;
  min-height: 110px;
}

.form__error {
  font-size: 0.8rem;
  color: #c0392b;
  min-height: 1em;
}

/* ===========================
   Footer
   =========================== */
.footer {
  background: linear-gradient(155deg, var(--color-espresso) 0%, var(--color-wine) 100%);
  color: rgba(242, 217, 180, 0.7);
  padding: 3.5rem 0 1.75rem;
  position: relative;
  overflow: hidden;
}

/* Faint gold dot grid overlay */
.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(237, 195, 130, 0.08) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.footer__content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(237, 195, 130, 0.15);
  position: relative;
  z-index: 1;
}

.footer__logo {
  font-family: var(--font-serif);
  font-size: 1.6rem;          /* Cormorant at 1.35 was too small — bump it */
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--color-cream);
  display: block;
  margin-bottom: 0.4rem;
}

.footer__tagline {
  font-family: var(--font-sans);
  font-style: italic;          /* Lora italic — warm, personal sign-off */
  font-size: 0.85rem;
  color: rgba(242, 217, 180, 0.6);
}

.footer__links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer__links a {
  font-size: 0.87rem;
  color: rgba(242, 217, 180, 0.6);
  transition: color var(--transition);
}

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

.footer__bottom {
  font-family: var(--font-serif);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.79rem;
  position: relative;
  z-index: 1;
  color: rgba(242, 217, 180, 0.5);
}

.footer__oab {
  color: var(--color-gold);
  font-style: italic;
  opacity: 0.85;
}

/* ===========================
   Floating WhatsApp Button
   =========================== */
.whatsapp-float {
  position: fixed;
  bottom: 5.5rem;
  right: 1.5rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-whatsapp);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  z-index: 99;
  transition: transform var(--transition), box-shadow var(--transition);
  animation: pulse-whatsapp 3s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.65);
  animation: none;
}

@keyframes pulse-whatsapp {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5); }
  50%       { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.8), 0 0 0 8px rgba(37, 211, 102, 0.1); }
}

/* ===========================
   Back to Top Button
   =========================== */
.back-to-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-wine);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: var(--shadow-warm);
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.back-to-top:hover {
  transform: translateY(-3px);
  background: var(--color-burgundy);
}

/* ===========================
   Animations
   =========================== */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   Responsive
   =========================== */
@media (max-width: 900px) {
  .about__grid {
    grid-template-columns: 1fr;
    gap: 2.75rem;
  }

  .about__image-wrapper::before {
    display: none;
  }

  .about__image-placeholder {
    max-width: 320px;
    margin: 0 auto;
  }

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

  .contact__grid {
    gap: 2rem;
  }

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

@media (max-width: 768px) {
  :root {
    --section-padding: 4rem 0;
  }

  .nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 300px;
    height: 100vh;
    background: linear-gradient(155deg, var(--color-espresso) 0%, var(--color-wine) 100%);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    transition: right var(--transition);
    box-shadow: var(--shadow-lg);
    z-index: 200;
  }

  .nav__menu.open {
    right: 0;
  }

  .nav__link {
    font-size: 1.1rem;
  }

  .nav__toggle {
    display: block;
    z-index: 300;
  }

  .hero__buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .footer__content {
    flex-direction: column;
    gap: 1.5rem;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .about__stats {
    gap: 1.5rem;
  }
}

@media (max-width: 560px) {
  .areas__grid {
    grid-template-columns: 1fr;
  }

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

  .hero__content {
    padding-top: 6rem;
  }
}
