/* ============================================
   OTORO SUPPER CLUB — styles.css
   ============================================ */

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

:root {
  --navy:    #060b1e;
  --navy-mid: #0d1535;
  --blue:    #1a237e;
  --cream:   #f4efe6;
  --white:   #ffffff;
  --gold:    #c9a96e;
  --gold-light: #dfc28e;
  --gray:    #6b7280;
  --serif:   'Cormorant Garamond', Georgia, serif;
  --sans:    'Inter', system-ui, sans-serif;
  --max:     1280px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--navy);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --- Typography --- */
h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.15;
}

h1 { font-size: clamp(2.8rem, 7vw, 6rem); }
h2 { font-size: clamp(2rem, 4vw, 3.6rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.8rem); }

em { font-style: italic; color: var(--gold); }

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

.body-text {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(244, 239, 230, 0.75);
  max-width: 520px;
}

/* --- Buttons --- */
.btn-primary {
  display: inline-block;
  padding: 0.85rem 2.4rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background 0.3s, color 0.3s;
  cursor: pointer;
  background: transparent;
}

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

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

/* ============================================
   NAVBAR
   ============================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.5rem 0;
  transition: background 0.4s, padding 0.4s;
}

#navbar.scrolled {
  background: rgba(6, 11, 30, 0.96);
  backdrop-filter: blur(12px);
  padding: 1rem 0;
}

.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 28px;
  width: auto;
  filter: brightness(0) invert(1);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links li a {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(244, 239, 230, 0.75);
  transition: color 0.2s;
}

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

.nav-cta {
  padding: 0.55rem 1.5rem;
  border: 1px solid var(--gold) !important;
  color: var(--gold) !important;
  transition: background 0.25s, color 0.25s !important;
}

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

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

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--cream);
  transition: transform 0.3s, opacity 0.3s;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 99;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.mobile-menu.open { display: flex; }

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: center;
}

.mobile-menu li a {
  font-family: var(--serif);
  font-size: 2.5rem;
  color: var(--cream);
  transition: color 0.2s;
}

.mobile-menu li a:hover { color: var(--gold); }

/* ============================================
   HERO
   ============================================ */
#hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 8vh;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(6,11,30,0.2) 0%,
    rgba(6,11,30,0.15) 40%,
    rgba(6,11,30,0.7) 75%,
    rgba(6,11,30,0.95) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

.hero-eyebrow {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.hero-title {
  color: var(--white);
  margin-bottom: 1.4rem;
  max-width: 700px;
}

.hero-sub {
  font-size: 1rem;
  color: rgba(244, 239, 230, 0.7);
  margin-bottom: 2.5rem;
  max-width: 480px;
  line-height: 1.7;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  z-index: 2;
}

.hero-scroll span {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(244, 239, 230, 0.4);
  writing-mode: vertical-lr;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollAnim 2s ease-in-out infinite;
}

@keyframes scrollAnim {
  0%, 100% { opacity: 0.3; transform: scaleY(0.7) translateY(-8px); }
  50% { opacity: 1; transform: scaleY(1) translateY(0); }
}

/* ============================================
   INTRO STRIP
   ============================================ */
.intro-strip {
  background: var(--blue);
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}

.intro-strip .dot { color: var(--gold-light); font-size: 1rem; }

/* ============================================
   ABOUT
   ============================================ */
#about {
  padding: 8rem 2rem;
  max-width: var(--max);
  margin: 0 auto;
}

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

.about-text h2 {
  margin-bottom: 2rem;
  color: var(--cream);
}

.about-text .body-text + .body-text { margin-top: 1.2rem; }

.about-badge {
  margin-top: 3rem;
  width: 120px;
  opacity: 0.85;
}

.about-badge img { border-radius: 50%; }

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

.about-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 78%;
  height: 78%;
  overflow: hidden;
}

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

.about-img-secondary {
  position: absolute;
  bottom: 0; right: 0;
  width: 55%;
  height: 50%;
  overflow: hidden;
  border: 4px solid var(--navy);
}

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

/* ============================================
   EXPERIENCE
   ============================================ */
#experience {
  background: var(--navy-mid);
  padding: 8rem 2rem;
}

.section-header {
  max-width: var(--max);
  margin: 0 auto 5rem;
}

.section-header h2 { color: var(--cream); }

.experience-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.exp-card { display: flex; flex-direction: column; gap: 1.5rem; }

.exp-img {
  aspect-ratio: 3/4;
  overflow: hidden;
}

.exp-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.exp-card:hover .exp-img img { transform: scale(1.04); }

.exp-text h3 {
  color: var(--cream);
  margin-bottom: 0.75rem;
}

.exp-text p {
  font-size: 0.92rem;
  line-height: 1.8;
  color: rgba(244, 239, 230, 0.65);
}

/* ============================================
   FULL BLEED BREAK
   ============================================ */
.full-bleed-break {
  position: relative;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fbb-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.fbb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(6, 11, 30, 0.72);
}

.full-bleed-break blockquote {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 0 2rem;
  text-align: center;
}

.full-bleed-break blockquote p {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-style: italic;
  color: var(--cream);
  line-height: 1.6;
}

/* ============================================
   GALLERY
   ============================================ */
#gallery {
  padding: 8rem 2rem;
  max-width: var(--max);
  margin: 0 auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 8px;
}

.g-item {
  overflow: hidden;
  cursor: pointer;
}

.g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.g-tall { grid-row: span 2; }
.g-wide { grid-column: span 2; }

/* ============================================
   SERVICES
   ============================================ */
#services {
  background: var(--navy-mid);
  padding: 8rem 2rem;
}

.services-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
}

.service-card {
  padding: 3.5rem 3rem;
  background: var(--navy-mid);
  transition: background 0.3s;
}

.service-card:hover { background: rgba(26, 35, 126, 0.25); }

.service-num {
  font-family: var(--serif);
  font-size: 3rem;
  color: rgba(201, 169, 110, 0.2);
  line-height: 1;
  margin-bottom: 1.5rem;
}

.service-card h3 {
  color: var(--cream);
  margin-bottom: 1rem;
}

.service-card p {
  font-size: 0.92rem;
  line-height: 1.8;
  color: rgba(244, 239, 230, 0.6);
}

/* ============================================
   LOGO STRIP
   ============================================ */
.logostrip {
  padding: 4rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
}

.logostrip img {
  max-width: 600px;
  width: 100%;
  opacity: 0.7;
  filter: saturate(0.4);
  transition: opacity 0.3s, filter 0.3s;
}

.logostrip img:hover { opacity: 1; filter: saturate(1); }

/* ============================================
   INQUIRE
   ============================================ */
#inquire {
  padding: 8rem 2rem;
  background: var(--navy);
}

.inquire-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: start;
}

.inquire-text h2 {
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.inquire-text .body-text { margin-bottom: 2.5rem; }

.inquire-details {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.inquire-details > div {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.detail-label {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.inquire-details span:last-child {
  font-size: 0.95rem;
  color: rgba(244, 239, 230, 0.75);
}

/* Form */
.inquire-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

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

.form-field label {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(244, 239, 230, 0.5);
}

.form-field input,
.form-field select,
.form-field textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 0.92rem;
  padding: 0.85rem 1rem;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  appearance: none;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--gold);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(244, 239, 230, 0.25);
}

.form-field select option {
  background: var(--navy-mid);
  color: var(--cream);
}

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

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--navy-mid);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 4rem 2rem;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-logo img {
  height: 24px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.6;
}

.footer-logo p {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: rgba(244, 239, 230, 0.35);
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(244, 239, 230, 0.4);
  transition: color 0.2s;
}

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

.footer-copy {
  text-align: right;
}

.footer-copy p {
  font-size: 0.68rem;
  color: rgba(244, 239, 230, 0.25);
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(6, 11, 30, 0.96);
  align-items: center;
  justify-content: center;
}

.lightbox.open { display: flex; }

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 2rem;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s;
}

.lightbox-close:hover { opacity: 1; }

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 4rem; }
  .about-images { height: 460px; }
  .experience-grid { grid-template-columns: 1fr 1fr; }
  .exp-card:last-child { display: none; }
  .inquire-inner { grid-template-columns: 1fr; gap: 4rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-copy { display: none; }
}

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

  #hero { align-items: flex-end; padding-bottom: 6vh; }

  .experience-grid { grid-template-columns: 1fr; }
  .exp-card:last-child { display: flex; }
  .exp-img { aspect-ratio: 16/9; }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
  .g-wide { grid-column: span 1; }

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

  .form-row { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-links { justify-content: flex-start; }
  .footer-copy { display: block; text-align: left; }
}

@media (max-width: 480px) {
  h1 { font-size: 2.6rem; }
  h2 { font-size: 2rem; }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }
  .g-tall { grid-row: span 1; }

  .about-images { height: 340px; }

  .service-card { padding: 2.5rem 1.5rem; }
}
