/* ============================================
   Tea2Go Seminole — Styles
   Deep Navy (#0F1C3F) + Warm Gold (#D4A84B)
   Clean minimalist · Thin type · Lots of whitespace
   ============================================ */

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

:root {
  --navy: #0F1C3F;
  --navy-light: #1a2d56;
  --navy-dark: #0a1530;
  --gold: #D4A84B;
  --gold-light: #e8c76a;
  --gold-dark: #b8912e;
  --cream: #FAFAF7;
  --white: #ffffff;
  --gray-50: #f8f8f6;
  --gray-100: #f0f0ec;
  --gray-200: #e2e2dc;
  --gray-300: #c8c8c0;
  --gray-400: #9e9e94;
  --gray-500: #7a7a72;
  --gray-600: #5a5a54;
  --gray-700: #3d3d38;
  --gray-800: #2a2a26;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 3px rgba(15,28,63,0.06);
  --shadow-md: 0 4px 20px rgba(15,28,63,0.08);
  --shadow-lg: 0 12px 48px rgba(15,28,63,0.12);
  --shadow-xl: 0 24px 64px rgba(15,28,63,0.16);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--gray-700);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212,168,75,0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn-ghost:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

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

.btn-ghost-light:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.85rem;
}

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

/* ---- SECTION COMMON ---- */
.section {
  padding: 110px 0;
}

.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 64px;
}

.section-eyebrow {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 18px;
}

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

.section-desc {
  font-size: 1.05rem;
  color: var(--gray-500);
  line-height: 1.8;
}

/* ---- NAV ---- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250,250,247,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(15,28,63,0.06);
  transition: all var(--transition);
}

.nav.scrolled {
  background: rgba(250,250,247,0.96);
  box-shadow: var(--shadow-sm);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
}

.nav-logo-icon {
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--gray-600);
  letter-spacing: 0.02em;
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width var(--transition);
}

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

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

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 22px;
  height: 1.5px;
  background: var(--navy);
  transition: all var(--transition);
  transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -5px);
}

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 0 0;
  position: relative;
  overflow: hidden;
  background: var(--cream);
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(212,168,75,0.06) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(15,28,63,0.04) 0%, transparent 40%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 20px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.05;
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--gray-500);
  line-height: 1.8;
  max-width: 460px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  height: 620px;
}

.hero-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: absolute;
}

.hero-card-main {
  width: 380px;
  height: 480px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.hero-card-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--white);
  border-radius: 50px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--navy);
  box-shadow: var(--shadow-md);
}

.hero-card-float {
  width: 180px;
  height: 144px;
  box-shadow: var(--shadow-xl);
  transition: transform var(--transition);
}

.hero-card-float:hover {
  transform: scale(1.04);
}

.hero-card-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card-float--left {
  left: -20px;
  top: 20px;
}

.hero-card-float--right {
  right: -10px;
  bottom: 20px;
}

/* ---- STATS ---- */
.hero-stats {
  position: relative;
  z-index: 1;
  margin-top: 80px;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  padding: 48px 0;
}

.stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.stat-card {
  text-align: center;
  padding: 0 48px;
  flex: 1;
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--gray-400);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 400;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--gray-200);
  flex-shrink: 0;
}

/* ---- MENU ---- */
.menu {
  background: var(--white);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.menu-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--cream);
  transition: all var(--transition);
  border: 1px solid transparent;
}

.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(212,168,75,0.2);
}

.menu-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.menu-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-card:hover .menu-card-img img {
  transform: scale(1.06);
}

.menu-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--navy);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 50px;
}

.menu-tag--new {
  background: var(--gold);
  color: var(--navy);
}

.menu-card-body {
  padding: 24px;
}

.menu-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}

.menu-card-body p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ---- ABOUT ---- */
.about {
  background: var(--cream);
}

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

.about-images {
  position: relative;
  height: 680px;
}

.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: absolute;
  top: 0;
  left: 0;
  width: 75%;
  height: 82%;
}

.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img-secondary {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 55%;
  border: 6px solid var(--cream);
}

.about-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-accent {
  position: absolute;
  top: -20px;
  right: 40%;
  width: 120px;
  height: 120px;
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  opacity: 0.3;
  z-index: -1;
}

.about-content {
  max-width: 480px;
}

.about-text {
  font-size: 1.02rem;
  color: var(--gray-500);
  line-height: 1.85;
  margin-bottom: 20px;
}

.about-values {
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--gray-700);
  font-weight: 400;
}

.value-icon {
  flex-shrink: 0;
}

/* ---- VISIT ---- */
.visit {
  background: var(--white);
}

.visit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.visit-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 36px 30px;
  text-align: center;
  border: 1px solid transparent;
  transition: all var(--transition);
}

.visit-card:hover {
  border-color: rgba(212,168,75,0.25);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.visit-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(212,168,75,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.visit-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}

.visit-card p {
  font-size: 0.92rem;
  color: var(--gray-500);
  line-height: 1.7;
}

.visit-card a {
  color: var(--gold-dark);
  font-weight: 500;
  transition: color var(--transition);
}

.visit-card a:hover {
  color: var(--navy);
}

.visit-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
}

.map-placeholder iframe {
  width: 100%;
  height: 420px;
  display: block;
}

/* ---- CTA ---- */
.cta {
  background: var(--navy);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 70% 30%, rgba(212,168,75,0.15) 0%, transparent 55%);
  pointer-events: none;
}

.cta .container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta .section-eyebrow {
  color: var(--gold);
}

.cta .section-title {
  color: var(--white);
  margin-bottom: 18px;
}

.cta .section-title em {
  color: var(--gold);
}

.cta-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
  max-width: 500px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-actions .btn-ghost-light:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

/* ---- CONTACT ---- */
.contact {
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-text {
  font-size: 1.02rem;
  color: var(--gray-500);
  line-height: 1.85;
  margin-bottom: 32px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--gray-600);
}

.contact-detail a {
  color: var(--gold-dark);
  font-weight: 500;
  transition: color var(--transition);
}

.contact-detail a:hover {
  color: var(--navy);
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
}

.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--gray-700);
  background: var(--gray-50);
  transition: all var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(212,168,75,0.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-300);
}

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

.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding: 16px 20px;
  background: rgba(212,168,75,0.1);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--navy);
  font-weight: 400;
}

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

/* ---- FOOTER ---- */
.footer {
  background: var(--navy-dark);
  padding: 64px 0 40px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 32px;
}

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  margin-top: 12px;
  max-width: 280px;
  line-height: 1.7;
}

.footer-links {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}

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

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.8;
}

.footer-copy a {
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
}

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

/* ---- ANIMATIONS ---- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .hero-grid {
    gap: 40px;
  }

  .hero-visual {
    height: 500px;
  }

  .hero-card-main {
    width: 300px;
    height: 390px;
  }

  .hero-card-float {
    width: 140px;
    height: 112px;
  }

  .about-grid {
    gap: 48px;
  }

  .about-images {
    height: 500px;
  }

  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .section {
    padding: 80px 0;
  }

  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(250,250,247,0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 32px 24px;
    gap: 24px;
    border-bottom: 1px solid var(--gray-200);
    transform: translateY(-120%);
    opacity: 0;
    transition: all var(--transition);
    pointer-events: none;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    padding-top: 100px;
    min-height: auto;
  }

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

  .hero-visual {
    height: 400px;
    order: -1;
  }

  .hero-card-main {
    width: 240px;
    height: 310px;
  }

  .hero-card-float {
    width: 120px;
    height: 96px;
  }

  .hero-card-float--left {
    left: 0;
    top: 0;
  }

  .hero-card-float--right {
    right: 0;
    bottom: 0;
  }

  .hero-headline {
    font-size: clamp(2.4rem, 10vw, 3.5rem);
  }

  .stats-row {
    flex-wrap: wrap;
    gap: 24px;
  }

  .stat-card {
    padding: 0 24px;
  }

  .stat-divider {
    display: none;
  }

  .menu-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

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

  .about-images {
    height: 400px;
    order: -1;
  }

  .about-values {
    grid-template-columns: 1fr;
  }

  .visit-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto 48px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-form {
    padding: 28px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 18px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    justify-content: center;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .cta-actions .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .footer-links {
    gap: 20px;
  }
}
