/* ============================================================
   The Clay Landing — styles.css
   Dark, moody, upscale waterfront dining aesthetic
   ============================================================ */

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

:root {
  --bg:         #0f0c08;
  --dark-brown: #1c1208;
  --gold:       #c9a84c;
  --gold-muted: #8a7035;
  --cream:      #f5f0e8;
  --card-bg:    #161008;
  --card-border: rgba(201,168,76,0.18);
  --text-dim:   rgba(245,240,232,0.65);
}

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

body {
  background-color: var(--bg);
  color: var(--cream);
  font-family: 'Karla', sans-serif;
  font-weight: 300;
  line-height: 1.75;
  overflow-x: hidden;
}

/* ── UTILITIES ── */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  font-family: 'Karla', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 16px;
}

.gold-divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
  margin: 20px auto 0;
}
.gold-divider.left-align {
  margin: 20px 0 0;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.btn {
  display: inline-block;
  font-family: 'Karla', sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 36px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.btn-gold {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: #dbbe60;
  border-color: #dbbe60;
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border-color: rgba(245,240,232,0.35);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-full { width: 100%; text-align: center; }

/* ── FADE-UP ANIMATION ── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── NAV ── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  padding: 24px 0;
  transition: background 0.4s ease, padding 0.4s ease, border-bottom 0.4s ease;
}

.site-nav.scrolled {
  background: rgba(15,12,8,0.97);
  padding: 14px 0;
  border-bottom: 1px solid var(--card-border);
  backdrop-filter: blur(8px);
}

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

.nav-logo {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.logo-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 0.04em;
}
.logo-tagline {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-muted);
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-links a {
  font-family: 'Karla', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(245,240,232,0.7);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }

.nav-cta {
  color: var(--gold) !important;
  border: 1px solid rgba(201,168,76,0.4) !important;
  padding: 8px 20px;
}
.nav-cta:hover {
  background: rgba(201,168,76,0.1) !important;
  border-color: var(--gold) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--cream);
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15,12,8,0.5) 0%,
    rgba(15,12,8,0.72) 50%,
    rgba(15,12,8,0.85) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 680px;
  padding: 0 24px;
}

.hero-eyebrow {
  font-family: 'Karla', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.2rem, 8vw, 6rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.05;
  margin-bottom: 24px;
}
.hero-headline em {
  font-style: italic;
  color: var(--gold);
}

.hero-rule {
  width: 48px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
  margin: 0 auto 28px;
}

.hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.3rem;
  color: var(--text-dim);
  margin-bottom: 44px;
  letter-spacing: 0.02em;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-hours {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.4);
}

/* ── GOLD BAND ── */
.gold-band {
  background: var(--dark-brown);
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
  padding: 22px 24px;
}
.gold-band-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  max-width: 600px;
  margin: 0 auto;
}
.gold-band-inner p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--gold);
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.gold-rule {
  flex: 1;
  height: 1px;
  background: var(--gold);
  opacity: 0.25;
}

/* ── MENU SECTION ── */
.menu-section {
  padding: 110px 0;
  background: var(--bg);
}

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

.menu-card {
  background: var(--card-bg);
  padding: 44px 36px;
  border-right: 1px solid var(--card-border);
  transition: background 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.menu-card:hover {
  background: #1e1508;
}
.menu-card:nth-child(3n) { border-right: none; }

.menu-card-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  color: var(--gold);
  opacity: 0.5;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.menu-card-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 14px;
  line-height: 1.2;
}

.menu-card-rule {
  width: 32px;
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
  margin-bottom: 18px;
}

.menu-card-content p {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.8;
}

/* ── STORY SECTION ── */
.story-section {
  background: var(--dark-brown);
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
}

.story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.story-image {
  overflow: hidden;
}
.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.75) saturate(0.85);
  transition: filter 0.5s ease;
}
.story-image:hover img { filter: brightness(0.85) saturate(0.9); }

.story-content {
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.story-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 0;
}
.story-title em { color: var(--gold); }

.story-content p {
  font-size: 0.92rem;
  color: var(--text-dim);
  line-height: 1.85;
  margin-top: 20px;
}

.story-details {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-top: 1px solid var(--card-border);
  padding-top: 28px;
}
.story-detail {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.story-detail-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.story-detail span,
.story-detail a {
  font-size: 0.88rem;
  color: var(--text-dim);
  text-decoration: none;
}
.story-detail a:hover { color: var(--gold); }

/* ── ABOUT BAND ── */
.about-band {
  position: relative;
  height: 400px;
  overflow: hidden;
}
.about-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
}
.about-band-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15,12,8,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-band-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  color: var(--cream);
  text-align: center;
  padding: 0 24px;
  max-width: 700px;
}

/* ── RESERVATIONS CTA ── */
.reservations-cta {
  padding: 100px 0;
  background: var(--bg);
  border-bottom: 1px solid var(--card-border);
}
.res-cta-inner {
  text-align: center;
  max-width: 580px;
  margin: 0 auto;
}
.res-cta-inner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 16px;
}
.res-cta-inner p {
  font-size: 0.92rem;
  color: var(--text-dim);
  line-height: 1.8;
  margin-bottom: 36px;
}

/* ── REVIEWS ── */
.reviews {
  background: var(--dark-brown);
  padding: 110px 0;
  border-top: 1px solid var(--card-border);
}

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

.review-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: border-color 0.3s;
}
.review-card:hover { border-color: rgba(201,168,76,0.4); }

.review-stars {
  font-size: 0.85rem;
  letter-spacing: 3px;
  color: var(--gold);
}

.review-card blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--cream);
  line-height: 1.7;
  flex: 1;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}
.reviewer-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gold-muted);
  color: var(--bg);
  font-size: 0.72rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: 'Karla', sans-serif;
}
.reviewer strong {
  display: block;
  font-size: 0.85rem;
  color: var(--cream);
  font-weight: 600;
}
.reviewer span {
  font-size: 0.75rem;
  color: var(--text-dim);
}

.google-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  color: rgba(245,240,232,0.3);
  border-top: 1px solid var(--card-border);
  padding-top: 14px;
}

/* ── CONTACT ── */
.contact {
  background: var(--bg);
  padding: 110px 0;
}

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

.contact-info h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 0;
}
.contact-info h2 em { color: var(--gold); }

.contact-info p {
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.8;
  margin-top: 20px;
  margin-bottom: 32px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-top: 1px solid var(--card-border);
  padding-top: 24px;
}
.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.detail-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.contact-detail span,
.contact-detail a {
  font-size: 0.88rem;
  color: var(--text-dim);
  text-decoration: none;
}
.contact-detail a:hover { color: var(--gold); }

/* ── FORM ── */
.contact-form-wrap {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  padding: 48px 44px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-group label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.req { color: rgba(245,240,232,0.3); }

.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  border: 1px solid rgba(201,168,76,0.2);
  background: rgba(255,255,255,0.03);
  font-family: 'Karla', sans-serif;
  font-size: 0.9rem;
  color: var(--cream);
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(245,240,232,0.25);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(201,168,76,0.6);
}
.form-group select option {
  background: #1c1208;
  color: var(--cream);
}
.form-group input.error,
.form-group select.error {
  border-color: rgba(200,80,80,0.6);
}

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

.field-error {
  font-size: 0.72rem;
  color: rgba(220,100,100,0.9);
  min-height: 1em;
}

.form-success {
  display: none;
  text-align: center;
  padding: 60px 24px;
}
.form-success.visible { display: block; }

.success-rule {
  width: 48px;
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
  margin: 0 auto 28px;
}
.form-success h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 16px;
}
.form-success p {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.8;
}
.form-success a { color: var(--gold); text-decoration: none; }

/* ── FOOTER ── */
.site-footer {
  background: var(--dark-brown);
  border-top: 1px solid var(--card-border);
  padding: 64px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.9rem;
  color: var(--gold-muted);
}

.footer-info p,
.footer-hours p {
  font-size: 0.82rem;
  color: var(--text-dim);
  line-height: 1.8;
}
.footer-info a { color: var(--gold); text-decoration: none; }
.footer-info a:hover { color: var(--cream); }

.footer-hours-label {
  font-size: 0.65rem !important;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold) !important;
  margin-bottom: 8px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-dim);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--card-border);
  padding: 24px;
  text-align: center;
}
.footer-rule { margin-bottom: 20px; }
.footer-bottom p {
  font-size: 0.72rem;
  color: rgba(245,240,232,0.25);
  letter-spacing: 0.08em;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-card:nth-child(3n) { border-right: 1px solid var(--card-border); }
  .menu-card:nth-child(2n) { border-right: none; }
  .story-inner { grid-template-columns: 1fr; }
  .story-image { height: 400px; }
  .story-content { padding: 60px 40px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--dark-brown);
    padding: 80px 32px 40px;
    z-index: 998;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 18px 0;
    border-bottom: 1px solid var(--card-border);
  }
  .nav-cta { border: none !important; }
  .nav-toggle { display: flex; z-index: 999; }

  .menu-grid { grid-template-columns: 1fr; }
  .menu-card:nth-child(n) { border-right: none; }
  .reviews-grid { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .contact-form-wrap { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 3rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .about-band { height: 280px; }
  .story-content { padding: 40px 24px; }
}
