/* ═══════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--space-md) 0;
  background: rgba(255, 249, 240, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all var(--duration-base) var(--ease-out);
}

.nav.is-scrolled {
  padding: var(--space-sm) 0;
  box-shadow: var(--shadow-sm);
  background: rgba(255, 249, 240, 0.95);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
}

.nav__logo {
  display: flex;
  align-items: baseline;
  gap: 0;
  z-index: 1001;
}

.nav__logo-mock {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--text-lg);
  color: var(--bark);
  letter-spacing: -0.02em;
}

.nav__logo-byify {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: var(--text-lg);
  color: var(--palm);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav__link {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--bark-light);
  position: relative;
  padding-bottom: 2px;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--coral);
  border-radius: 1px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration-base) var(--ease-out);
}

.nav__link:hover::after {
  transform: scaleX(1);
}

.nav__link:hover {
  color: var(--bark);
}

.nav__cta {
  font-size: var(--text-xs);
  padding: 0.7em 1.6em;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-sm);
  z-index: 1001;
}

.nav__hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--bark);
  border-radius: 2px;
  transition: all var(--duration-base) var(--ease-out);
}

.nav__hamburger.is-open .nav__hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__hamburger.is-open .nav__hamburger-line:nth-child(2) {
  opacity: 0;
}

.nav__hamburger.is-open .nav__hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 999;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--duration-base) var(--ease-out),
              visibility var(--duration-base) var(--ease-out);
}

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

.mobile-menu__accent {
  height: 5px;
  background: linear-gradient(90deg, var(--palm), var(--lime), var(--citrus), var(--coral), var(--berry));
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: var(--space-xl);
  padding: var(--space-3xl);
}

.mobile-menu__link {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 400;
  color: var(--bark);
  transition: color var(--duration-fast) var(--ease-out);
}

.mobile-menu__link:hover {
  color: var(--palm);
}

.mobile-menu__cta {
  margin-top: var(--space-lg);
}

@media (max-width: 900px) {
  .nav__links,
  .nav__cta {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }
}

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: calc(var(--section-pad) + 4rem);
}

.hero__blobs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero__blob {
  position: absolute;
  border-radius: 50%;
}

.hero__blob--1 {
  width: clamp(350px, 45vw, 600px);
  height: clamp(350px, 45vw, 600px);
  background: radial-gradient(circle, rgba(0, 196, 114, 0.25) 0%, rgba(0, 148, 90, 0.08) 40%, transparent 70%);
  top: 2%;
  right: -8%;
}

.hero__blob--2 {
  width: clamp(250px, 30vw, 450px);
  height: clamp(250px, 30vw, 450px);
  background: radial-gradient(circle, rgba(255, 136, 0, 0.22) 0%, rgba(255, 171, 64, 0.08) 40%, transparent 70%);
  top: 25%;
  right: 12%;
}

.hero__blob--3 {
  width: clamp(200px, 25vw, 350px);
  height: clamp(200px, 25vw, 350px);
  background: radial-gradient(circle, rgba(255, 71, 87, 0.2) 0%, rgba(255, 107, 122, 0.06) 40%, transparent 70%);
  bottom: 12%;
  right: 2%;
}

.hero__leaf {
  position: absolute;
  width: clamp(100px, 12vw, 160px);
  top: 10%;
  right: 6%;
  opacity: 0.85;
  animation: scaleIn 1s var(--ease-out) 0.6s both;
}

.hero__citrus {
  position: absolute;
  width: clamp(90px, 10vw, 140px);
  bottom: 22%;
  right: 18%;
  opacity: 0.75;
  animation: scaleIn 1s var(--ease-out) 0.8s both;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero__label {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--palm);
  margin-bottom: var(--space-lg);
}

.hero__heading {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 700;
  line-height: 1.08;
  color: var(--bark);
  margin-bottom: var(--space-xl);
  letter-spacing: -0.02em;
}

.hero__accent {
  font-style: italic;
}

.hero__subtitle {
  font-size: var(--text-md);
  color: var(--bark-light);
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: var(--space-2xl);
}

.hero__ctas {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: var(--space-2xl);
  left: 50%;
  transform: translateX(-50%);
  animation: bounceDown 2s var(--ease-in-out) infinite;
  opacity: 0.5;
}

@media (max-width: 640px) {
  .hero {
    min-height: 90vh;
    text-align: center;
  }

  .hero__content {
    max-width: 100%;
  }

  .hero__subtitle {
    max-width: 100%;
  }

  .hero__ctas {
    justify-content: center;
  }

  .hero__blob--1 {
    right: -30%;
    top: 0;
  }

  .hero__blob--2 {
    right: -10%;
    top: 60%;
  }

  .hero__leaf,
  .hero__citrus {
    opacity: 0.3;
  }
}

/* ═══════════════════════════════════════════
   WAVE DIVIDERS
   ═══════════════════════════════════════════ */

.wave-divider {
  margin-top: -1px;
  line-height: 0;
}

.wave-divider svg {
  width: 100%;
  height: clamp(40px, 5vw, 80px);
  display: block;
}

/* ═══════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════ */

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
  margin-bottom: var(--space-4xl);
}

.about__body {
  font-size: var(--text-md);
  color: var(--bark-light);
  margin-bottom: var(--space-lg);
}

.about__visual {
  position: relative;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about__circle {
  position: absolute;
  border-radius: 50%;
}

.about__circle--citrus {
  width: 190px;
  height: 190px;
  background: radial-gradient(circle, var(--citrus) 0%, var(--citrus-light) 40%, var(--citrus-pale) 100%);
  top: 8%;
  left: 12%;
  opacity: 0.55;
}

.about__circle--palm {
  width: 230px;
  height: 230px;
  background: radial-gradient(circle, var(--palm) 0%, var(--palm-light) 35%, var(--palm-pale) 100%);
  top: 18%;
  right: 8%;
  opacity: 0.4;
}

.about__circle--coral {
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, var(--coral) 0%, var(--coral-light) 40%, var(--coral-pale) 100%);
  bottom: 3%;
  left: 28%;
  opacity: 0.5;
}

.about__circle--lime {
  width: 110px;
  height: 110px;
  background: radial-gradient(circle, var(--lime) 0%, #A8F050 40%, #DFFCED 100%);
  top: 3%;
  right: 28%;
  opacity: 0.5;
}

.about__values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.about__value-icon {
  margin-bottom: var(--space-md);
}

.about__value-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.about__value-desc {
  font-size: var(--text-sm);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .about__grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .about__visual {
    height: 250px;
  }
}

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

  .about__visual {
    display: none;
  }
}

/* ═══════════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════════ */

.services__header {
  margin-bottom: var(--space-3xl);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: var(--space-lg);
}

.services__card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  transition: all var(--duration-base) var(--ease-out);
}

.services__card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.services__card--featured {
  grid-column: span 1;
  grid-row: span 1;
}

.services__card-accent {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  transition: width var(--duration-base) var(--ease-out);
}

[data-accent="palm"] .services__card-accent { background: var(--palm); }
[data-accent="citrus"] .services__card-accent { background: var(--citrus); }
[data-accent="coral"] .services__card-accent { background: var(--coral); }
[data-accent="champagne"] .services__card-accent { background: var(--citrus-light); }
[data-accent="lime"] .services__card-accent { background: var(--lime); }

[data-accent="palm"]:hover { background: var(--palm-pale); box-shadow: var(--shadow-glow-palm); }
[data-accent="citrus"]:hover { background: var(--citrus-pale); box-shadow: var(--shadow-glow-citrus); }
[data-accent="coral"]:hover { background: var(--coral-pale); box-shadow: var(--shadow-glow-coral); }
[data-accent="champagne"]:hover { background: var(--citrus-pale); box-shadow: var(--shadow-glow-citrus); }
[data-accent="lime"]:hover { background: #E6FFD6; box-shadow: 0 4px 20px rgba(126, 211, 33, 0.2); }

.services__card:hover .services__card-accent {
  width: 7px;
}

.services__card-title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-xl);
  font-weight: 400;
  margin-bottom: var(--space-sm);
  color: var(--bark);
}

.services__card-desc {
  font-size: var(--text-sm);
  color: var(--bark-light);
  line-height: 1.6;
}

.services__card-tag {
  display: inline-block;
  margin-top: var(--space-md);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--palm);
  background: var(--palm-pale);
  padding: 0.3em 0.8em;
  border-radius: var(--radius-full);
}

@media (max-width: 900px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

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

/* ═══════════════════════════════════════════
   SIGNATURE DRINKS / MENU
   ═══════════════════════════════════════════ */

.menu__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  margin-bottom: var(--space-3xl);
}

.menu__card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  cursor: default;
  transition: transform var(--duration-base) var(--ease-out),
              box-shadow var(--duration-base) var(--ease-out);
}

.menu__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.menu__card-bg {
  position: absolute;
  inset: 0;
  transition: transform var(--duration-slow) var(--ease-out);
}

.menu__card:hover .menu__card-bg {
  transform: scale(1.05);
}

.menu__card-bg--sunset {
  background: linear-gradient(155deg, #FFD166 0%, #FF8800 30%, #FF4757 65%, #C62368 100%);
}

.menu__card-bg--garden {
  background: linear-gradient(155deg, #7ED321 0%, #00C472 35%, #00945A 65%, #006644 100%);
}

.menu__card-bg--berry {
  background: linear-gradient(155deg, #FF6B7A 0%, #FF4757 30%, #C62368 60%, #8B1550 100%);
}

.menu__card-bg--golden {
  background: linear-gradient(155deg, #FFD166 0%, #FFAB40 30%, #FF8800 60%, #E06600 100%);
}

.menu__card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-xl);
  background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 100%);
  z-index: 2;
}

.menu__card-name {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: var(--text-xl);
  color: var(--white);
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
  margin-bottom: var(--space-sm);
}

.menu__card-pills {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
}

.menu__footer {
  text-align: center;
  font-size: var(--text-md);
  color: var(--bark-light);
}

.menu__footer-link {
  color: var(--palm);
  font-weight: 600;
  transition: color var(--duration-fast);
}

.menu__footer-link:hover {
  color: var(--palm-light);
}

@media (max-width: 1024px) {
  .menu__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .menu__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
  }

  .menu__card {
    aspect-ratio: 2 / 3;
  }

  .menu__card-content {
    padding: var(--space-md);
  }

  .menu__card-name {
    font-size: var(--text-lg);
  }
}

/* ═══════════════════════════════════════════
   HOW IT WORKS / PROCESS
   ═══════════════════════════════════════════ */

.process {
  text-align: center;
}

.process__steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-top: var(--space-3xl);
}

.process__step {
  flex: 1;
  max-width: 300px;
  padding: 0 var(--space-lg);
}

.process__number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--palm), var(--palm-light));
  color: var(--white);
  font-family: var(--font-display);
  font-size: var(--text-xl);
  box-shadow: var(--shadow-glow-palm);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  position: relative;
}

.process__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.process__desc {
  font-size: var(--text-sm);
  color: var(--bark-light);
  line-height: 1.6;
}

.process__line {
  width: 80px;
  height: 2px;
  margin-top: 30px;
  border-top: 2px dashed var(--palm);
  opacity: 0.3;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .process__steps {
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
  }

  .process__line {
    width: 2px;
    height: 40px;
    border-top: none;
    border-left: 2px dashed var(--palm);
    margin-top: 0;
  }
}

/* ═══════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════ */

.testimonials {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.testimonials__label {
  color: var(--lime) !important;
}

.testimonials__heading {
  color: var(--cream) !important;
}

.testimonials__quote-mark {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: clamp(10rem, 15vw, 20rem);
  color: var(--palm-light);
  opacity: 0.08;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.testimonials__carousel {
  position: relative;
  min-height: 200px;
  margin-bottom: var(--space-2xl);
}

.testimonials__slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity var(--duration-slow) var(--ease-out),
              transform var(--duration-slow) var(--ease-out);
  pointer-events: none;
}

.testimonials__slide.is-active {
  position: relative;
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.testimonials__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: var(--text-xl);
  color: var(--white);
  line-height: 1.5;
  margin-bottom: var(--space-xl);
  max-width: 650px;
}

.testimonials__attribution {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.testimonials__name {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--cream);
  font-size: var(--text-base);
}

.testimonials__event {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--lime);
  font-size: var(--text-sm);
}

.testimonials__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
}

.testimonials__arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  transition: all var(--duration-fast) var(--ease-out);
}

.testimonials__arrow:hover {
  border-color: var(--cream);
  background: rgba(255, 255, 255, 0.1);
}

.testimonials__dots {
  display: flex;
  gap: var(--space-sm);
}

.testimonials__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  transition: all var(--duration-fast) var(--ease-out);
}

.testimonials__dot.is-active {
  background: var(--cream);
  border-color: var(--cream);
}

.testimonials__dot:hover {
  border-color: var(--cream);
}

/* ═══════════════════════════════════════════
   GALLERY
   ═══════════════════════════════════════════ */

.gallery__grid {
  columns: 3;
  column-gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.gallery__item {
  break-inside: avoid;
  margin-bottom: var(--space-lg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform var(--duration-base) var(--ease-out),
              box-shadow var(--duration-base) var(--ease-out);
}

.gallery__item:hover {
  transform: scale(1.04) rotate(-0.5deg);
  box-shadow: var(--shadow-lg);
}

.gallery__placeholder {
  width: 100%;
  display: block;
}

.gallery__overlay {
  position: absolute;
  inset: 0;
  background: rgba(44, 24, 16, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--duration-base) var(--ease-out);
}

.gallery__item:hover .gallery__overlay {
  opacity: 1;
}

.gallery__overlay span {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-lg);
  color: var(--cream);
}

.gallery__cta {
  text-align: center;
  font-size: var(--text-md);
  color: var(--bark-muted);
}

.gallery__cta-link {
  color: var(--palm);
  font-weight: 600;
  transition: color var(--duration-fast);
}

.gallery__cta-link:hover {
  color: var(--palm-light);
}

@media (max-width: 900px) {
  .gallery__grid {
    columns: 2;
  }
}

@media (max-width: 640px) {
  .gallery__grid {
    columns: 1;
  }
}

/* ═══════════════════════════════════════════
   CTA BANNER
   ═══════════════════════════════════════════ */

.cta-banner {
  position: relative;
  text-align: center;
  overflow: hidden;
}

.cta-banner__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #FF8800 0%, #FF4757 50%, #C62368 100%);
  z-index: 0;
}

.cta-banner__content {
  position: relative;
  z-index: 2;
}

.cta-banner__heading {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-md);
  text-shadow: 0 2px 12px rgba(0,0,0,0.1);
}

.cta-banner__text {
  font-size: var(--text-md);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-2xl);
  max-width: 550px;
  margin-inline: auto;
}

.cta-banner__leaf {
  position: absolute;
  pointer-events: none;
  opacity: 0.6;
}

.cta-banner__leaf--left {
  width: 100px;
  bottom: 10%;
  left: 5%;
}

.cta-banner__leaf--right {
  width: 80px;
  top: 10%;
  right: 5%;
}

@media (max-width: 640px) {
  .cta-banner__leaf {
    display: none;
  }
}

/* ═══════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════ */

.contact__grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: var(--space-4xl);
  margin-top: var(--space-2xl);
}

.contact__form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

.contact__form .form-group {
  margin-bottom: var(--space-lg);
}

.contact__submit {
  margin-top: var(--space-md);
  width: 100%;
}

.contact__success {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: var(--palm-pale);
  border-radius: var(--radius-md);
  margin-top: var(--space-lg);
  color: var(--palm);
  font-weight: 500;
}

.contact__sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
}

.contact__info-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.contact__info-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
  font-size: var(--text-sm);
  color: var(--bark-light);
}

.contact__socials {
  display: flex;
  gap: var(--space-md);
}

.contact__social {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--cream-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bark-light);
  transition: all var(--duration-fast) var(--ease-out);
}

.contact__social:hover {
  background: var(--palm);
  color: var(--white);
}

@media (max-width: 900px) {
  .contact__grid {
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
  }
}

@media (max-width: 640px) {
  .contact__form-row {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */

.footer {
  padding-top: 0;
  position: relative;
}

.footer__accent {
  height: 4px;
  background: linear-gradient(90deg, var(--palm), var(--lime), var(--citrus), var(--coral), var(--berry));
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-3xl);
  padding-top: var(--space-4xl);
  padding-bottom: var(--space-3xl);
}

.footer__logo {
  display: flex;
  align-items: baseline;
  margin-bottom: var(--space-md);
}

.footer__logo-mock {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--text-lg);
  color: var(--cream);
  letter-spacing: -0.02em;
}

.footer__logo-byify {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: var(--text-lg);
  color: var(--palm-light);
}

.footer__tagline {
  color: var(--bark-muted);
  font-size: var(--text-sm);
  line-height: 1.6;
  max-width: 280px;
  color: rgba(245, 237, 224, 0.5);
}

.footer__col-title {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: var(--space-lg);
}

.footer__link {
  display: block;
  font-size: var(--text-sm);
  color: rgba(245, 237, 224, 0.5);
  padding-block: var(--space-xs);
  transition: color var(--duration-fast);
}

.footer__link:hover {
  color: var(--palm-light);
}

.footer__socials {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.footer__social {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(245, 237, 224, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(245, 237, 224, 0.5);
  transition: all var(--duration-fast) var(--ease-out);
}

.footer__social:hover {
  background: var(--palm);
  color: var(--white);
}

.footer__bottom {
  border-top: 1px solid rgba(245, 237, 224, 0.08);
  padding-block: var(--space-lg);
  text-align: center;
  font-size: var(--text-xs);
  color: rgba(245, 237, 224, 0.3);
}

@media (max-width: 900px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }

  .footer__brand {
    grid-column: span 2;
  }
}

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

  .footer__brand {
    grid-column: span 1;
  }
}
