/* ==========================================================
   ABOUT PAGE — Luxury · Romantic · Elegant
   Design tokens: Cream, Champagne Gold, Ocean Jade
   ========================================================== */

:root {
  --about-cream:     #f0f7fb;
  --about-sand:      #eef4f8;
  --about-gold:      #d4a373;
  --about-gold-soft: #e8c89f;
  --about-jade:      #1a85b8;
  --about-jade-deep: #0d6e94;
  --about-text:      #1a2e38;
  --about-muted:     #6b8597;
  --about-line:      rgba(92, 200, 240, 0.4);

  --font-serif:   'Playfair Display', 'Cormorant Garamond', serif;
  --font-italic:  'Cormorant Garamond', serif;
  --font-sans:    'Inter', system-ui, sans-serif;
}

/* ==========================================================
   1. HERO
========================================================== */
.about-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.about-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 18s ease-out forwards;
}

@keyframes heroZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1); }
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
              rgba(10, 110, 159, 0.25) 0%,
              rgba(10, 110, 159, 0.55) 60%,
              rgba(10, 110, 159, 0.75) 100%);
}

.about-hero-content {
  position: relative;
  z-index: 1;
  max-width: 880px;
  padding: 0 2rem;
}

.eyebrow-light {
  color: var(--about-gold-soft);
  letter-spacing: 0.4em;
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  display: inline-block;
}

.hero-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 1.5rem;
}

.hero-line-1 {
  display: block;
  opacity: 0;
  animation: heroFadeUp 1.2s 0.3s ease-out forwards;
}

.hero-line-2 {
  display: block;
  font-style: italic;
  color: var(--about-gold-soft);
  font-family: var(--font-italic);
  font-weight: 300;
  opacity: 0;
  animation: heroFadeUp 1.2s 0.7s ease-out forwards;
}

.hero-line-2 em {
  font-style: italic;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-tagline {
  font-family: var(--font-italic);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-style: italic;
  font-weight: 300;
  letter-spacing: 0.05em;
  opacity: 0;
  animation: heroFadeUp 1.2s 1.1s ease-out forwards;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.hero-scroll-cta {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: var(--about-gold-soft);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0;
  animation: heroFadeUp 1.2s 1.5s ease-out forwards, scrollBounce 2s 2.5s ease-in-out infinite;
  transition: color 0.3s;
}

.hero-scroll-cta:hover {
  color: #fff;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(8px); }
}

/* ==========================================================
   2. BRAND STORY
========================================================== */
.about-story {
  padding: clamp(4rem, 8vw, 8rem) 0;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

@media (max-width: 880px) {
  .story-grid { grid-template-columns: 1fr; }
}

.story-text .eyebrow {
  color: var(--about-gold);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.story-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 3.5vw, 2.85rem);
  line-height: 1.2;
  margin: 1rem 0 1.5rem;
  color: var(--about-jade-deep);
}

.story-text .lead {
  font-family: var(--font-italic);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--about-jade);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.story-text p {
  color: var(--about-muted);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

.story-text .btn {
  margin-top: 1rem;
}

.story-image {
  position: relative;
  aspect-ratio: 4/5;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  position: relative;
  z-index: 2;
  box-shadow: 0 30px 60px -20px rgba(10, 110, 159, 0.35);
}

.story-image-frame {
  position: absolute;
  top: 24px;
  left: 24px;
  right: -24px;
  bottom: -24px;
  border: 2px solid var(--about-gold);
  border-radius: 4px;
  z-index: 1;
}

/* ==========================================================
   3. LEGACY — 20 Years Infographic
========================================================== */
.about-legacy {
  padding: clamp(4rem, 8vw, 8rem) 0;
  background: var(--about-jade-deep);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.about-legacy::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(92, 200, 240, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(92, 200, 240, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.about-legacy .section-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.about-legacy h2 {
  font-family: var(--font-serif);
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
}

.eyebrow-gold {
  color: var(--about-gold);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.section-subtitle {
  color: rgba(255, 255, 255, 0.75);
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 1.15rem;
  max-width: 640px;
  margin: 1rem auto 0;
}

.legacy-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 1;
}

@media (max-width: 880px) {
  .legacy-grid { grid-template-columns: repeat(2, 1fr); gap: 3rem 1.5rem; }
}

@media (max-width: 480px) {
  .legacy-grid { grid-template-columns: 1fr; }
}

.legacy-stat {
  text-align: center;
  padding: 2rem 1rem;
  position: relative;
}

.legacy-stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -1rem;
  top: 30%;
  bottom: 30%;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--about-gold), transparent);
  opacity: 0.4;
}

@media (max-width: 880px) {
  .legacy-stat:not(:last-child)::after { display: none; }
}

.legacy-number {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 400;
  color: var(--about-gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.legacy-label {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.85rem;
  color: var(--about-gold-soft);
  margin-bottom: 1rem;
}

.legacy-line {
  width: 40px;
  height: 1px;
  background: var(--about-gold);
  margin: 0 auto 1rem;
}

.legacy-stat p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.6;
  font-family: var(--font-italic);
  font-style: italic;
}

/* ==========================================================
   4. CABINS MOSAIC
========================================================== */
.about-cabins {
  padding: clamp(4rem, 8vw, 8rem) 0;
  background: var(--about-sand);
}

.about-cabins .section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.about-cabins h2 {
  font-family: var(--font-serif);
  color: var(--about-jade-deep);
  font-size: clamp(2rem, 4vw, 3rem);
}

.about-cabins .section-subtitle {
  color: var(--about-muted);
  margin: 1rem auto 0;
}

.cabins-mosaic {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: 240px 240px;
  gap: 1rem;
  margin-bottom: 3rem;
}

.mosaic-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
  background: #fff;
}

.mosaic-large {
  grid-column: span 3;
  grid-row: span 2;
}

.mosaic-item:not(.mosaic-large) {
  grid-column: span 1;
  grid-row: span 1;
}

@media (min-width: 881px) {
  .mosaic-item:nth-child(2),
  .mosaic-item:nth-child(3) { grid-column: span 1; }
  .mosaic-item:nth-child(4),
  .mosaic-item:nth-child(5),
  .mosaic-item:nth-child(6) { grid-column: span 1; }
}

@media (max-width: 880px) {
  .cabins-mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .mosaic-large {
    grid-column: span 2;
    grid-row: span 1;
    aspect-ratio: 16/9;
  }
  .mosaic-item:not(.mosaic-large) {
    aspect-ratio: 1;
  }
}

.mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.mosaic-item:hover img {
  transform: scale(1.08);
}

.mosaic-caption {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  background: linear-gradient(180deg, transparent 50%, rgba(10, 110, 159, 0.85) 100%);
  color: #fff;
}

.mosaic-caption span {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  letter-spacing: 0.05em;
}

.cabins-cta {
  text-align: center;
  margin-top: 2rem;
}

.cabins-cta p {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--about-jade);
  margin-bottom: 1.5rem;
}

/* ==========================================================
   5. CULINARY
========================================================== */
.about-culinary {
  padding: clamp(4rem, 8vw, 8rem) 0;
  background: var(--about-cream);
}

.culinary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

@media (max-width: 880px) {
  .culinary-grid { grid-template-columns: 1fr; }
  .culinary-image { order: -1; }
}

.culinary-image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 20px 50px -20px rgba(10, 110, 159, 0.3);
}

.culinary-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 3.5vw, 2.85rem);
  color: var(--about-jade-deep);
  margin: 1rem 0 1.5rem;
}

.culinary-text .lead {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--about-jade);
  margin-bottom: 1.5rem;
}

.culinary-text p {
  color: var(--about-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.culinary-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 2rem;
}

.culinary-features li {
  padding: 0.6rem 0;
  border-bottom: 1px dashed var(--about-line);
  color: var(--about-jade-deep);
  font-size: 1rem;
}

.culinary-features li:last-child {
  border-bottom: none;
}

/* ==========================================================
   6. WELLNESS
========================================================== */
.about-wellness {
  position: relative;
  padding: clamp(5rem, 10vw, 9rem) 0;
  color: #fff;
  overflow: hidden;
}

.wellness-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.wellness-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4) blur(2px);
}

.wellness-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 133, 184, 0.5), rgba(10, 110, 159, 0.85));
}

.about-wellness .container {
  position: relative;
  z-index: 1;
}

.wellness-content {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.wellness-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.1;
  margin: 1.5rem 0 2rem;
  color: #fff;
}

.wellness-title span {
  display: inline-block;
  margin: 0 0.3em;
}

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

.wellness-lead {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 1.3rem;
  max-width: 720px;
  margin: 0 auto 4rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.wellness-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (max-width: 880px) {
  .wellness-pillars { grid-template-columns: 1fr; gap: 2rem; }
}

.pillar {
  padding: 2rem 1.5rem;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(92, 200, 240, 0.2);
  border-radius: 4px;
  transition: transform 0.4s, border-color 0.4s;
}

.pillar:hover {
  transform: translateY(-6px);
  border-color: var(--about-gold);
}

.pillar-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.pillar h4 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--about-gold);
  margin: 0 0 0.75rem;
}

.pillar p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* ==========================================================
   7. CONSULTATION FORM
========================================================== */
.about-consult {
  position: relative;
  padding: clamp(4rem, 8vw, 8rem) 0;
  overflow: hidden;
}

.consult-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.consult-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: hue-rotate(-10deg) saturate(1.1);
}

.consult-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
              rgba(255, 180, 110, 0.4),
              rgba(201, 105, 91, 0.55),
              rgba(10, 110, 159, 0.7));
}

.about-consult .container {
  position: relative;
  z-index: 1;
}

.consult-card {
  max-width: 720px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.96);
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: 6px;
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.consult-card h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 3.5vw, 2.85rem);
  color: var(--about-jade-deep);
  margin: 1rem 0 1.25rem;
}

.consult-card > p {
  color: var(--about-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 540px;
  margin: 0 auto 2rem;
}

.consult-form {
  text-align: left;
}

.consult-form-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.875rem;
  margin-bottom: 0.875rem;
}

@media (max-width: 600px) {
  .consult-form-grid { grid-template-columns: 1fr; }
}

.consult-form input,
.consult-form textarea {
  width: 100%;
  padding: 0.95rem 1.1rem;
  border: 1px solid #a5cce0;
  border-radius: 4px;
  background: #fafafa;
  font-family: var(--font-sans);
  font-size: 0.98rem;
  transition: border-color 0.25s, background 0.25s;
}

.consult-form input:focus,
.consult-form textarea:focus {
  outline: none;
  border-color: var(--about-gold);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(92, 200, 240, 0.15);
}

.consult-form textarea {
  resize: vertical;
  min-height: 100px;
}

.btn-lg {
  width: 100%;
  padding: 1.1rem 2rem;
  font-size: 1.05rem;
  letter-spacing: 0.15em;
  margin-top: 1rem;
}

.consult-trust {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.88rem;
  color: var(--about-muted);
  font-family: var(--font-italic);
  font-style: italic;
}

/* ==========================================================
   REVEAL ANIMATIONS
========================================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s ease-out, transform 0.9s ease-out;
}

.reveal.is-visible,
.reveal[data-revealed="true"] {
  opacity: 1;
  transform: translateY(0);
}

/* Fallback — show after small delay if no JS observer */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}
