/* ========================================
   Yoberry Frozen Yogurt Bar & Cafe
   Bold Editorial Style
   Navy + Warm Gold Palette
   ======================================== */

/* --- CSS Custom Properties --- */
:root {
  --navy-950: #060D18;
  --navy-900: #0D1B2A;
  --navy-800: #132740;
  --navy-700: #1A3555;
  --navy-600: #214268;
  --gold-500: #C8A456;
  --gold-400: #D4B36A;
  --gold-300: #E0C480;
  --gold-200: #EDD9A0;
  --gold-100: #F5EBC8;
  --cream-50: #FAF8F4;
  --cream-100: #F5F0E8;
  --cream-200: #EDE5D8;
  --white: #FFFFFF;
  --text-dark: #0D1B2A;
  --text-light: #FAF8F4;
  --text-muted: #6B7B8D;
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--cream-50);
  overflow-x: hidden;
}

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

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

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

ul {
  list-style: none;
}

/* --- Utility --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 3rem;
  }
}

.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 1rem;
}

.section-headline {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--navy-900);
  margin-bottom: 1.5rem;
}

.text-gold {
  color: var(--gold-500);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: 4px;
  transition: all 0.3s var(--ease-out);
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--gold-500);
  color: var(--navy-900);
  border: 2px solid var(--gold-500);
}

.btn-primary:hover {
  background-color: var(--gold-400);
  border-color: var(--gold-400);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 164, 86, 0.3);
}

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

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

.btn-full {
  width: 100%;
}

/* ========================================
   NAVIGATION
   ======================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(13, 27, 42, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200, 164, 86, 0.15);
  transition: background-color 0.3s ease;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

@media (min-width: 768px) {
  .nav-inner {
    padding: 0 2rem;
  }
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
}

.nav-logo-mark {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-500);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--gold-500);
  border-radius: 4px;
}

.nav-logo-text {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(250, 248, 244, 0.75);
  letter-spacing: 0.02em;
  transition: color 0.25s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--gold-500);
  transition: width 0.3s var(--ease-out);
}

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

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 0.5rem 1.25rem !important;
  border: 1.5px solid var(--gold-500) !important;
  border-radius: 4px;
  color: var(--gold-500) !important;
  transition: all 0.3s var(--ease-out) !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background-color: var(--gold-500) !important;
  color: var(--navy-900) !important;
}

/* Mobile Toggle */
.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: background-color 0.2s ease;
}

@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }
}

.nav-toggle:hover {
  background-color: rgba(250, 248, 244, 0.1);
}

.nav-toggle-icon {
  width: 20px;
  height: 20px;
  color: var(--white);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background-color: var(--navy-900);
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-out);
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: background-color 0.2s ease;
}

.mobile-menu-close:hover {
  background-color: rgba(250, 248, 244, 0.1);
}

.mobile-menu-close svg {
  width: 24px;
  height: 24px;
  color: var(--white);
}

.mobile-menu-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.25rem;
  padding-top: 2rem;
}

.mobile-menu-link {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--white);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(200, 164, 86, 0.15);
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.mobile-menu-link:hover {
  color: var(--gold-500);
  padding-left: 0.5rem;
}

.mobile-menu-phone,
.mobile-menu-email {
  font-size: 0.9375rem;
  color: var(--gold-500);
  padding: 0.5rem 0;
  margin-top: 1rem;
  transition: color 0.2s ease;
}

.mobile-menu-phone:hover,
.mobile-menu-email:hover {
  color: var(--gold-300);
}

/* ========================================
   HERO
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  background-color: var(--navy-900);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(200, 164, 86, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 20% 80%, rgba(200, 164, 86, 0.05) 0%, transparent 50%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 1.5rem 4rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .hero-inner {
    padding: 8rem 2rem 4rem;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

@media (min-width: 1024px) {
  .hero-inner {
    padding: 8rem 3rem 4rem;
    gap: 5rem;
  }
}

/* Hero Left */
.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 1.5rem;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero-accent {
  color: var(--gold-500);
  font-style: italic;
  font-weight: 500;
}

.hero-subheadline {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: rgba(250, 248, 244, 0.7);
  max-width: 480px;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hero-stat-number {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold-500);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(250, 248, 244, 0.5);
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background-color: rgba(200, 164, 86, 0.3);
}

/* Hero Right */
.hero-image-wrapper {
  position: relative;
}

.hero-image-wrapper img {
  width: 100%;
  height: auto;
  aspect-ratio: 600 / 750;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.3);
}

.hero-image-accent {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--gold-500);
  border-radius: 8px;
  z-index: -1;
  opacity: 0.4;
}

@media (min-width: 768px) {
  .hero-image-accent {
    top: -24px;
    right: -24px;
  }
}

/* Hero Scroll Indicator */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(250, 248, 244, 0.4);
  animation: float 2.5s ease-in-out infinite;
}

.hero-scroll svg {
  width: 24px;
  height: 24px;
}

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

/* ========================================
   ABOUT
   ======================================== */
.about {
  padding: 6rem 0;
  background-color: var(--cream-50);
}

@media (min-width: 768px) {
  .about {
    padding: 8rem 0;
  }
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

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

.about-image-main {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(13, 27, 42, 0.12);
}

.about-image-main img {
  width: 100%;
  height: auto;
  aspect-ratio: 560 / 640;
  object-fit: cover;
}

.about-image-small {
  position: absolute;
  bottom: -2rem;
  right: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 16px 32px rgba(13, 27, 42, 0.15);
  border: 4px solid var(--cream-50);
}

.about-image-small img {
  width: 100%;
  height: auto;
  aspect-ratio: 320 / 240;
  object-fit: cover;
}

@media (min-width: 768px) {
  .about-image-small {
    width: 55%;
    bottom: -3rem;
  }
}

.about-body {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.about-signature {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--cream-200);
}

.about-signature-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.125rem;
  color: var(--navy-800);
}

/* ========================================
   DIVIDER
   ======================================== */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 0;
}

/* ========================================
   MENU / THE BAR
   ======================================== */
.menu {
  padding: 6rem 0;
  background-color: var(--navy-900);
}

@media (min-width: 768px) {
  .menu {
    padding: 8rem 0;
  }
}

.menu-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 4rem;
}

.menu-header .section-headline {
  color: var(--white);
}

.menu-intro {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: rgba(250, 248, 244, 0.6);
}

.menu-categories {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .menu-categories {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.menu-card {
  background-color: var(--navy-800);
  border: 1px solid rgba(200, 164, 86, 0.15);
  border-radius: 8px;
  padding: 2rem;
  position: relative;
  transition: transform 0.3s var(--ease-out), border-color 0.3s ease, box-shadow 0.3s ease;
}

.menu-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200, 164, 86, 0.35);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
}

.menu-card-featured {
  border-color: rgba(200, 164, 86, 0.3);
  background: linear-gradient(135deg, var(--navy-800) 0%, rgba(200, 164, 86, 0.08) 100%);
}

.menu-card-badge {
  position: absolute;
  top: -10px;
  right: 1.5rem;
  background-color: var(--gold-500);
  color: var(--navy-900);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.375rem 0.75rem;
  border-radius: 2px;
}

.menu-card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.25rem;
}

.menu-card-title {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.menu-card-desc {
  font-size: 0.9375rem;
  color: rgba(250, 248, 244, 0.6);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.menu-card-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.menu-card-list li {
  font-size: 0.875rem;
  color: rgba(250, 248, 244, 0.75);
  padding-left: 1rem;
  position: relative;
}

.menu-card-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 4px;
  height: 4px;
  background-color: var(--gold-500);
  border-radius: 50%;
}

.menu-card-note {
  font-size: 0.8125rem;
  color: var(--gold-500);
  font-style: italic;
  opacity: 0.8;
}

.menu-cta {
  text-align: center;
  padding: 2.5rem;
  border: 1px solid rgba(200, 164, 86, 0.2);
  border-radius: 8px;
  background-color: rgba(200, 164, 86, 0.05);
}

.menu-cta p {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.menu-cta .btn {
  margin: 0 auto;
}

/* ========================================
   COFFEE SPOTLIGHT
   ======================================== */
.coffee {
  padding: 6rem 0;
  background-color: var(--cream-50);
}

@media (min-width: 768px) {
  .coffee {
    padding: 8rem 0;
  }
}

.coffee-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .coffee-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.coffee-content .section-headline {
  margin-bottom: 1.25rem;
}

.coffee-body {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.coffee-features {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.coffee-features li {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  font-size: 1rem;
  color: var(--navy-800);
  font-weight: 500;
}

.coffee-check {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--gold-500);
}

.coffee-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(13, 27, 42, 0.12);
}

.coffee-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 560 / 680;
  object-fit: cover;
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials {
  padding: 6rem 0;
  background-color: var(--navy-900);
}

@media (min-width: 768px) {
  .testimonials {
    padding: 8rem 0;
  }
}

.testimonials-header {
  text-align: center;
  max-width: 480px;
  margin: 0 auto 3rem;
}

.testimonials-header .section-headline {
  color: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.testimonial-card {
  background-color: var(--navy-800);
  border: 1px solid rgba(200, 164, 86, 0.12);
  border-radius: 8px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: border-color 0.3s ease, transform 0.3s var(--ease-out);
}

.testimonial-card:hover {
  border-color: rgba(200, 164, 86, 0.3);
  transform: translateY(-2px);
}

.testimonial-quote {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  opacity: 0.6;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(250, 248, 244, 0.8);
  flex: 1;
}

.testimonial-author {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-500);
  opacity: 0.8;
}

/* ========================================
   VISIT / CONTACT
   ======================================== */
.visit {
  padding: 6rem 0;
  background-color: var(--cream-50);
}

@media (min-width: 768px) {
  .visit {
    padding: 8rem 0;
  }
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .visit-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.visit-detail {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.visit-detail-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(200, 164, 86, 0.3);
  border-radius: 4px;
}

.visit-detail-icon svg {
  width: 20px;
  height: 20px;
}

.visit-detail-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.visit-detail-value {
  font-size: 1rem;
  color: var(--navy-800);
  line-height: 1.6;
}

.visit-detail-value a {
  color: var(--navy-800);
  transition: color 0.2s ease;
}

.visit-detail-value a:hover {
  color: var(--gold-500);
}

.visit-map {
  margin-top: 2rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(13, 27, 42, 0.1);
  position: relative;
}

.visit-map-link {
  display: block;
  position: relative;
}

.visit-map-link img {
  width: 100%;
  height: auto;
  aspect-ratio: 800 / 360;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}

.visit-map-link:hover img {
  transform: scale(1.03);
}

.visit-map-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 27, 42, 0.7) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 2rem;
  gap: 0.75rem;
  color: var(--white);
  transition: background 0.3s ease;
}

.visit-map-link:hover .visit-map-overlay {
  background: linear-gradient(to top, rgba(13, 27, 42, 0.85) 0%, rgba(13, 27, 42, 0.3) 100%);
}

.visit-map-overlay svg {
  width: 28px;
  height: 28px;
}

.visit-map-overlay span {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* Contact Form */
.visit-form-col {
  display: flex;
  align-items: flex-start;
}

.visit-form-card {
  width: 100%;
  background-color: var(--white);
  border: 1px solid var(--cream-200);
  border-radius: 8px;
  padding: 2.5rem;
  box-shadow: 0 8px 32px rgba(13, 27, 42, 0.06);
}

.visit-form-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy-900);
  margin-bottom: 0.5rem;
}

.visit-form-subtitle {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy-800);
  margin-bottom: 0.5rem;
}

.form-input {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--navy-900);
  background-color: var(--cream-50);
  border: 1.5px solid var(--cream-200);
  border-radius: 4px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}

.form-input::placeholder {
  color: var(--text-muted);
  opacity: 0.7;
}

.form-input:focus {
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(200, 164, 86, 0.15);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 3rem 2rem;
  text-align: center;
}

.form-success.active {
  display: flex;
}

.form-success svg {
  width: 48px;
  height: 48px;
  color: var(--gold-500);
}

.form-success p {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--navy-900);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background-color: var(--navy-950);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
  }
}

.footer-brand {
  max-width: 320px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 1rem;
  text-decoration: none;
}

.footer-logo-mark {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--gold-500);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--gold-500);
  border-radius: 4px;
}

.footer-logo-text {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--white);
}

.footer-tagline {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(250, 248, 244, 0.5);
}

.footer-nav,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-nav-title {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 0.25rem;
}

.footer-nav a,
.footer-contact a,
.footer-contact p {
  font-size: 0.9375rem;
  color: rgba(250, 248, 244, 0.6);
  transition: color 0.2s ease;
}

.footer-nav a:hover,
.footer-contact a:hover {
  color: var(--gold-500);
}

.footer-bottom {
  border-top: 1px solid rgba(200, 164, 86, 0.12);
  padding: 1.5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-copy,
.footer-location {
  font-size: 0.8125rem;
  color: rgba(250, 248, 244, 0.35);
}
</style>
