/* Saranie-Thai — stylesheet (ported from the React design tokens) */

:root {
  --background: #fbf6ec;
  --gradient-warm: linear-gradient(180deg, #fbf6ec, #f3ebda);
  --foreground: #392e25;
  --card: #fffcf6;
  --muted-foreground: #7c6a58;
  --secondary: #eee5d3;
  --border: #e4dac6;
  --teak: #3b2f26;
  --teak-deep: #241c16;
  --gold: #d3a44f;
  --gold-soft: rgba(211, 164, 79, 0.2);
  --primary: #493a2e;
  --primary-foreground: #f6efe1;
  --gradient-teak: linear-gradient(140deg, #241c16, #3b2f26);
  --shadow-soft: 0 18px 45px -28px rgba(59, 47, 38, 0.65);
  --shadow-lift: 0 28px 60px -30px rgba(59, 47, 38, 0.55);
  --radius: 1.5rem;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Jost", ui-sans-serif, system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background-image: var(--gradient-warm);
  background-attachment: fixed;
  color: var(--foreground);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 500; margin: 0; color: var(--teak); }

.shell { width: 100%; max-width: 72rem; margin: 0 auto; padding-left: 1.25rem; padding-right: 1.25rem; }
.section { padding-top: 6rem; padding-bottom: 6rem; }
.band { background: rgba(238, 229, 211, 0.6); padding: 6rem 0; }
.section-head { max-width: 42rem; }
.section-head h2, .split h2 { font-size: clamp(2.25rem, 4vw, 3rem); }
.section-head p { margin-top: 0.75rem; color: var(--muted-foreground); }
.note { color: var(--muted-foreground); font-size: 0.875rem; }

.icon { width: 1rem; height: 1rem; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  border-radius: 999px; padding: 0.75rem 1.5rem;
  font-size: 0.875rem; font-weight: 500; border: 1px solid transparent;
  cursor: pointer; transition: transform 0.2s ease, opacity 0.2s ease, background-color 0.2s ease;
}
.btn-primary { background: var(--primary); color: var(--primary-foreground); padding: 0.5rem 1rem; }
.btn-primary:hover { opacity: 0.9; }
.btn-gold { background: var(--gold); color: #2c231b; }
.btn-gold:hover { transform: translateY(-2px); }
.btn-ghost { border-color: rgba(246, 239, 225, 0.4); color: var(--primary-foreground); }
.btn-ghost:hover { background: rgba(246, 239, 225, 0.1); }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  border-bottom: 1px solid rgba(228, 218, 198, 0.7);
  background: rgba(251, 246, 236, 0.85);
  backdrop-filter: blur(10px);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-top: 1rem; padding-bottom: 1rem; }
.brand { display: flex; flex-direction: column; align-items: flex-start; gap: 0.25rem; }
.brand img { height: 1.9rem; width: auto; }
.brand-sub { font-size: 0.63rem; letter-spacing: 0.32em; text-transform: uppercase; color: var(--muted-foreground); }
.nav-desktop { display: none; align-items: center; gap: 1.75rem; }
.nav-desktop a { font-size: 0.875rem; color: var(--muted-foreground); transition: color 0.2s ease; }
.nav-desktop a:hover { color: var(--foreground); }
.header-actions { display: flex; align-items: center; gap: 0.5rem; }
.lang-toggle {
  border-radius: 999px; border: 1px solid var(--border); background: transparent;
  padding: 0.35rem 0.75rem; font: inherit; font-size: 0.75rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted-foreground); cursor: pointer;
}
.lang-toggle:hover { border-color: var(--gold); color: var(--foreground); }
.phone-btn { display: none; }
.menu-btn {
  width: 2.25rem; height: 2.25rem; display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px; border: 1px solid var(--border); background: transparent; color: var(--foreground); cursor: pointer;
}
.nav-mobile { border-top: 1px solid var(--border); background: var(--background); padding: 0.5rem 1.25rem 1rem; }
.nav-mobile a { display: block; border-bottom: 1px solid rgba(228, 218, 198, 0.6); padding: 0.75rem 0; font-size: 0.875rem; }
.nav-mobile .btn { display: inline-flex; margin-top: 0.75rem; border-bottom: 0; }

/* Hero */
.hero { position: relative; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.overlay { position: absolute; inset: 0; background: rgba(36, 28, 22, 0.7); }
.hero-inner { position: relative; min-height: 78vh; display: flex; flex-direction: column; justify-content: center; padding-top: 6rem; padding-bottom: 6rem; }
.eyebrow { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.38em; color: var(--gold); margin: 0; }
.hero h1 { margin-top: 1.5rem; max-width: 48rem; font-size: clamp(3.5rem, 9vw, 6rem); line-height: 0.95; color: var(--primary-foreground); }
.hero-subtitle { margin-top: 1.5rem; max-width: 36rem; font-family: var(--font-display); font-size: 1.5rem; color: var(--gold); }
.hero-intro { margin-top: 1rem; max-width: 36rem; color: rgba(246, 239, 225, 0.8); }
.hero-actions { margin-top: 2.5rem; display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* About */
.split { display: grid; gap: 3rem; align-items: center; }
.prose { margin-top: 1.5rem; display: grid; gap: 1rem; color: var(--muted-foreground); }
.prose p { margin: 0; }
.stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; margin: 2.5rem 0 0; }
.stat { border: 1px solid var(--border); border-radius: 1rem; background: var(--card); padding: 1rem; }
.stat dt { font-family: var(--font-display); font-size: 1.875rem; color: var(--teak); }
.stat dd { margin: 0.25rem 0 0; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.18em; color: var(--muted-foreground); }
.rounded-media { margin: 0; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow-lift); }
.rounded-media img { width: 100%; height: 100%; object-fit: cover; }

/* Cards */
.cards-3 { margin-top: 3rem; display: grid; gap: 1.5rem; }
.card { border: 1px solid var(--border); border-radius: var(--radius); background: var(--card); padding: 2rem; box-shadow: var(--shadow-soft); }
.card h3 { margin-top: 1.25rem; font-size: 1.5rem; }
.card p { margin: 0.75rem 0 0; font-size: 0.875rem; color: var(--muted-foreground); }
.card-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 2.75rem; height: 2.75rem; border-radius: 999px;
  background: var(--gold-soft); color: var(--teak); font-size: 1.1rem;
}
.quote { margin-top: 2.5rem; max-width: 42rem; border-left: 2px solid var(--gold); padding-left: 1.25rem; font-size: 0.875rem; font-style: italic; color: var(--muted-foreground); }

/* Prices */
.price-card { border: 1px solid var(--border); border-radius: var(--radius); background: var(--card); padding: 2rem; text-align: center; transition: transform 0.2s ease; }
.price-card:hover { transform: translateY(-4px); }
.price-card--featured { border-color: var(--gold); background-image: var(--gradient-teak); color: var(--primary-foreground); box-shadow: var(--shadow-lift); }
.price-duration { margin: 0; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.28em; color: var(--muted-foreground); }
.price-card--featured .price-duration { color: var(--gold); }
.price-amount { margin: 1rem 0 0; font-family: var(--font-display); font-size: 3rem; color: var(--teak); }
.price-card--featured .price-amount { color: var(--primary-foreground); }
.price-grid + .note { margin-top: 2rem; }
.note a { color: var(--teak); font-weight: 500; text-decoration: underline; text-underline-offset: 4px; }

/* Island */
.island-wrap { max-width: 56rem; margin: 0 auto; padding: 0 1.25rem 2rem; }
.island { position: relative; overflow: hidden; border-radius: var(--radius); border: 1px solid var(--border); box-shadow: var(--shadow-lift); }
.island > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.island-content { position: relative; padding: 4rem 2rem; text-align: center; }
.island-content h2 { font-size: clamp(2.25rem, 4vw, 3rem); color: var(--primary-foreground); }
.island-content p { margin: 1.25rem auto 0; max-width: 42rem; color: rgba(246, 239, 225, 0.85); }

/* Gallery */
.gallery { margin-top: 3rem; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: 190px; gap: 1rem; }
.gallery figure { margin: 0; overflow: hidden; border-radius: 1rem; box-shadow: var(--shadow-soft); }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.gallery figure:hover img { transform: scale(1.05); }
.g-wide { grid-column: span 2; }
.g-half { grid-column: span 2; }

/* Hours & contact */
.hours { margin: 1rem 0 0; border: 1px solid var(--border); border-radius: var(--radius); background: var(--card); padding: 0 1.5rem; }
.hours-row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--border); }
.hours-row:last-child { border-bottom: 0; }
.hours-row dt { font-size: 0.875rem; color: var(--muted-foreground); }
.hours-row dd { margin: 0; font-family: var(--font-display); font-size: 1.25rem; color: var(--teak); }
.contact-grid { margin-top: 2rem; display: grid; gap: 1.5rem; }
.contact-grid .card { padding: 1.5rem; }
.label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.28em; color: var(--muted-foreground); font-family: var(--font-sans); font-weight: 500; }
address { margin-top: 0.75rem; font-style: normal; font-size: 0.875rem; line-height: 1.7; }
.link { display: inline-block; margin-top: 1rem; font-size: 0.875rem; font-weight: 500; color: var(--teak); text-decoration: underline; text-underline-offset: 4px; }
.phone-large { display: inline-block; margin-top: 0.75rem; font-family: var(--font-display); font-size: 1.5rem; color: var(--teak); }
.map { margin-top: 3rem; overflow: hidden; border-radius: var(--radius); border: 1px solid var(--border); box-shadow: var(--shadow-soft); }
.map iframe { display: block; width: 100%; height: 380px; border: 0; }

/* Footer */
.site-footer { background-image: var(--gradient-teak); color: var(--primary-foreground); padding: 3.5rem 0 0; }
.footer-grid { display: grid; gap: 2rem; }
.footer-grid p { margin: 0.25rem 0; font-size: 0.875rem; color: rgba(246, 239, 225, 0.8); }
.footer-logo { height: 2rem; width: auto; filter: brightness(0) invert(1); opacity: 0.9; }
.gold { color: var(--gold); display: inline-block; margin-top: 0.5rem; font-size: 0.875rem; }
.footer-bottom { margin-top: 2.5rem; border-top: 1px solid rgba(246, 239, 225, 0.15); padding-top: 1.5rem; padding-bottom: 2rem; font-size: 0.75rem; color: rgba(246, 239, 225, 0.6); }
.footer-bottom p { margin: 0 0 0.25rem; }

@media (min-width: 640px) {
  .phone-btn { display: inline-flex; }
  .cards-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .contact-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .gallery { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .g-wide { grid-column: span 4; }
  .g-half { grid-column: span 2; }
  .g-quarter { grid-column: span 1; }
  .brand img { height: 2rem; }
}

@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
  .menu-btn { display: none; }
  .nav-mobile { display: none !important; }
  .split { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 3.5rem; }
}
