/* ============================================
   ORIGAMI SHARK — Official Website Styles
   ============================================ */

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

:root {
  --ink: #1a3a52;
  --ink-light: #2d5a7a;
  --paper: #f5f2ec;
  --paper-dark: #e8e2d8;
  --cream: #faf8f4;
  --accent: #c8a84b;
  --accent-light: #e8d080;
  --blue-shark: #c8dce8;
  --text: #2a2a2a;
  --muted: #6a7a88;
  --white: #ffffff;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'DM Sans', system-ui, sans-serif;
  --max-width: 1200px;
  --radius: 4px;
  --transition: 0.3s ease;
}

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

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

/* ---- UTILITIES ---- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 6rem 0;
}

.section-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
  margin-bottom: 1rem;
}

.section h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 1.2rem;
}

.section h2 em {
  font-style: italic;
  color: var(--ink-light);
}

.section-sub {
  color: var(--muted);
  max-width: 60ch;
  margin-bottom: 3rem;
  font-size: 1.05rem;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  padding: 0.75rem 1.8rem;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition);
  border: 2px solid transparent;
}

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

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

.btn-small {
  padding: 0.4rem 1rem;
  font-size: 0.75rem;
  background: var(--paper-dark);
  color: var(--ink);
  border-color: var(--paper-dark);
  cursor: default;
}

.btn-available {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
  cursor: pointer;
}
.btn-available:hover {
  background: var(--ink-light);
}

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

/* ---- NAV ---- */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(245, 242, 236, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(26, 58, 82, 0.12);
  transition: box-shadow var(--transition);
}

#navbar.scrolled {
  box-shadow: 0 2px 20px rgba(26, 58, 82, 0.1);
}

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

.nav-logo {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.15em;
  color: var(--ink);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--ink);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0.8;
  transition: opacity var(--transition);
}
.nav-links a:hover { opacity: 1; }

.nav-burger {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--ink);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 1rem 2rem 1.5rem;
  gap: 1rem;
  border-top: 1px solid rgba(26,58,82,0.1);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  text-decoration: none;
  color: var(--ink);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: var(--ink);
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 30% 50%, rgba(200, 220, 232, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 30%, rgba(200, 168, 75, 0.06) 0%, transparent 50%);
  /* Subtle grid of fold lines */
  background-image:
    radial-gradient(ellipse at 30% 50%, rgba(200, 220, 232, 0.08) 0%, transparent 60%),
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 80px,
      rgba(255,255,255,0.02) 80px,
      rgba(255,255,255,0.02) 81px
    ),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 80px,
      rgba(255,255,255,0.02) 80px,
      rgba(255,255,255,0.02) 81px
    );
}

.hero-text {
  position: relative;
  z-index: 2;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  max-width: var(--max-width);
  width: 100%;
  padding: 0 2rem;
}

@media (max-width: 800px) {
  .hero-inner {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
}

.shark-container {
  position: relative;
  flex-shrink: 0;
  z-index: 2;
}

.shark {
  position: relative;
  display: inline-block;
  animation: floatShark 4s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4));
}

.shark-svg {
  width: min(420px, 80vw);
  height: auto;
}

@keyframes floatShark {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-16px) rotate(1deg); }
}

.shark-sparkle {
  position: absolute;
  color: var(--accent-light);
  font-size: 1.4rem;
  animation: sparkle 2s ease-in-out infinite;
  pointer-events: none;
}
#sparkle1 { top: 10%; right: 8%; animation-delay: 0s; }
#sparkle2 { top: 30%; left: 4%; animation-delay: 0.7s; }
#sparkle3 { bottom: 15%; right: 14%; animation-delay: 1.4s; }

@keyframes sparkle {
  0%, 100% { opacity: 0; transform: scale(0.5) rotate(0deg); }
  50% { opacity: 1; transform: scale(1.2) rotate(20deg); }
}

.hero-text {
  color: white;
  padding: 0;
  text-align: left;
  max-width: 480px;
}

@media (max-width: 800px) {
  .hero-text {
    text-align: center;
  }
}

.hero-kicker {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 0.8rem;
  opacity: 0.9;
}

.hero-name {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 10vw, 7rem);
  font-weight: 900;
  line-height: 0.95;
  color: white;
  margin-bottom: 1.2rem;
}
.hero-name em {
  font-style: italic;
  color: var(--blue-shark);
}

.hero-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: rgba(255,255,255,0.7);
  margin-bottom: 2.5rem;
  max-width: 50ch;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
  flex-wrap: wrap;
}

@media (max-width: 800px) {
  .hero-cta-group {
    justify-content: center;
  }
}

.hero-cta-group .btn-primary {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--ink);
}
.hero-cta-group .btn-primary:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
}
.hero-cta-group .btn-ghost {
  color: white;
  border-color: rgba(255,255,255,0.5);
}
.hero-cta-group .btn-ghost:hover {
  background: white;
  color: var(--ink);
  border-color: white;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  animation: pulseDown 2s ease-in-out infinite;
}
@keyframes pulseDown {
  0%,100% { transform: translateX(-50%) translateY(0); opacity: 0.4; }
  50% { transform: translateX(-50%) translateY(6px); opacity: 0.8; }
}

/* ---- TICKER ---- */
.ticker-wrap {
  background: var(--ink);
  border-top: 1px solid rgba(200, 168, 75, 0.3);
  border-bottom: 1px solid rgba(200, 168, 75, 0.3);
  overflow: hidden;
  padding: 0.65rem 0;
}

.ticker-inner {
  display: flex;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
  gap: 3rem;
}

.ticker-inner span {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: var(--accent-light);
  text-transform: uppercase;
  flex-shrink: 0;
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

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

.two-col {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 800px) {
  .two-col { grid-template-columns: 1fr; }
}

.about-portrait {
  position: sticky;
  top: 8rem;
}

.portrait-frame {
  border: 1px solid rgba(26,58,82,0.15);
  box-shadow: 8px 8px 0 var(--paper-dark), 16px 16px 0 rgba(26,58,82,0.06);
  overflow: hidden;
  background: #dde8f0;
}

.portrait-svg { width: 100%; display: block; }

.portrait-caption {
  font-size: 0.75rem;
  color: var(--muted);
  font-style: italic;
  margin-top: 0.5rem;
  text-align: center;
}

.about-text p {
  color: #3a4a5a;
  margin-bottom: 1.1rem;
  font-size: 1.02rem;
  line-height: 1.75;
}

.about-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--paper-dark);
  flex-wrap: wrap;
}

.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--ink);
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-top: 0.3rem;
}

/* ---- QUOTE BAND ---- */
.quote-band {
  background: var(--paper-dark);
  padding: 3rem 2rem;
  text-align: center;
  border-top: 1px solid rgba(26,58,82,0.08);
  border-bottom: 1px solid rgba(26,58,82,0.08);
}

.quote-band p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  color: var(--ink);
  max-width: 80ch;
  margin: 0 auto;
  line-height: 1.5;
}

/* ---- GALLERY ---- */
.gallery {
  background: var(--paper);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

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

.gallery-card {
  background: white;
  border: 1px solid rgba(26,58,82,0.1);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: default;
}
.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(26,58,82,0.12);
}

.gallery-card--featured {
  grid-column: span 2;
}
@media (max-width: 900px) {
  .gallery-card--featured { grid-column: span 1; }
}

.gallery-art svg { width: 100%; display: block; }
.gallery-art { aspect-ratio: 1; overflow: hidden; }
.gallery-card--featured .gallery-art { aspect-ratio: 2/1; }

.gallery-card--full {
  grid-column: 1 / -1;
}
.gallery-card--full .gallery-art { aspect-ratio: 3/1; }

.gallery-info {
  padding: 1rem 1.2rem 1.3rem;
}
.gallery-info h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--ink);
  margin-bottom: 0.25rem;
}
.gallery-info p {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
}
.gallery-price {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--accent);
}

/* ---- PRESS ---- */
.press {
  background: var(--cream);
}

.press-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

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

.press-card {
  background: var(--paper);
  border-left: 3px solid var(--accent);
  padding: 1.5rem;
}
.press-card blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.98rem;
  color: var(--ink);
  line-height: 1.6;
  margin-bottom: 0.8rem;
}
.press-card cite {
  font-size: 0.78rem;
  color: var(--muted);
  font-style: normal;
  font-weight: 500;
}

.awards-row {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid var(--paper-dark);
}
.award {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.6rem;
  flex: 1;
  min-width: 160px;
}
.award span {
  font-size: 0.85rem;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.4;
}
.award span em { color: var(--muted); font-style: italic; font-weight: 400; }

/* ---- FULL QUOTE ---- */
.full-quote {
  background: var(--ink);
  padding: 5rem 2rem;
  text-align: center;
}
.full-quote p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.3rem, 3.5vw, 2.2rem);
  color: var(--blue-shark);
  max-width: 80ch;
  margin: 0 auto 1rem;
  line-height: 1.5;
}
.full-quote span {
  font-size: 0.82rem;
  color: rgba(200, 220, 232, 0.5);
  letter-spacing: 0.08em;
}
.full-quote span em { font-style: italic; }

/* ---- TOUR ---- */
.tour {
  background: var(--paper);
}

.tour-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(26,58,82,0.12);
}

.tour-item {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(26,58,82,0.08);
  transition: background var(--transition);
}
.tour-item:last-child { border-bottom: none; }
.tour-item:hover { background: var(--cream); }

.tour-date {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.tour-month {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}
.tour-day {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 900;
  color: var(--ink);
  line-height: 1;
}

.tour-info h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--ink);
  margin-bottom: 0.15rem;
}
.tour-info p { font-size: 0.85rem; color: var(--muted); }

@media (max-width: 560px) {
  .tour-item { grid-template-columns: 70px 1fr; gap: 1rem; }
  .tour-ticket { grid-column: 2; }
}

/* ---- SHOP ---- */
.shop {
  background: var(--cream);
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

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

.shop-item {
  background: white;
  border: 1px solid rgba(26,58,82,0.1);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: transform var(--transition), box-shadow var(--transition);
}
.shop-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(26,58,82,0.1);
}

.shop-img svg { width: 100%; display: block; }
.shop-img {
  border: 1px solid rgba(26,58,82,0.08);
  margin-bottom: 0.5rem;
}

.shop-item h3 {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--ink);
}
.shop-item p { font-size: 0.8rem; color: var(--muted); flex: 1; }
.shop-price {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
  font-family: var(--font-serif);
}

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

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

@media (max-width: 800px) {
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
}

.contact-details {
  margin: 1.5rem 0;
}
.contact-details p {
  font-size: 0.9rem;
  color: #3a4a5a;
  margin-bottom: 0.5rem;
}
.contact-details em {
  font-style: italic;
  color: var(--muted);
  font-size: 0.85rem;
}

.social-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.social-link {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 1px;
  transition: color var(--transition);
}
.social-link:hover { color: var(--accent); }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-group label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink);
  font-weight: 500;
}
.form-group input,
.form-group select,
.form-group textarea {
  border: 1px solid rgba(26,58,82,0.2);
  background: white;
  padding: 0.75rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text);
  border-radius: var(--radius);
  transition: border-color var(--transition);
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--ink);
}
.form-group textarea { resize: vertical; }

.form-note {
  font-size: 0.85rem;
  color: var(--accent);
  font-style: italic;
  min-height: 1.5em;
  text-align: center;
}

/* ---- FOOTER ---- */
.footer {
  background: var(--ink);
  color: rgba(200, 220, 232, 0.7);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding: 4rem 2rem 3rem;
}

@media (max-width: 700px) {
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1rem;
  letter-spacing: 0.15em;
  color: var(--blue-shark);
  margin-bottom: 0.8rem;
}
.footer-brand p { font-size: 0.85rem; line-height: 1.6; }

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-links h4 {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-light);
  margin-bottom: 0.5rem;
}
.footer-links a {
  text-decoration: none;
  font-size: 0.85rem;
  color: rgba(200, 220, 232, 0.6);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--blue-shark); }

.footer-bottom {
  border-top: 1px solid rgba(200, 220, 232, 0.1);
  padding: 1.5rem 2rem;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(200, 220, 232, 0.35);
  max-width: var(--max-width);
  margin: 0 auto;
}

/* ---- BABY SHARKS ---- */
.baby-shark {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.6s ease;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.25));
}
.baby-shark svg {
  width: 100%;
  height: auto;
  display: block;
}

/* ---- SCROLL REVEAL ---- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
