/* ============================================
   Camellia Hotel Ninh Binh -- Stylesheet
   Warm cream + charcoal + terracotta/gold accent
   ============================================ */

:root {
  --cream: #FAF6EE;
  --cream-soft: #F3ECDE;
  --paper: #FFFCF7;
  --ink: #1F1F1C;
  --ink-soft: #4A4944;
  --muted: #837F75;
  --line: #E6DDC9;
  --accent: #B07A3B;
  --accent-dark: #8A5C26;
  --leaf: #2D3A2A;
  --shadow: 0 24px 60px -30px rgba(31, 31, 28, 0.25);

  --font-serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --container: 1200px;
  --container-narrow: 760px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg {
  display: block;
  max-width: 100%;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--ink);
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}

.narrow {
  max-width: var(--container-narrow);
}

.center {
  text-align: center;
}

/* ============================================
   Typography
   ============================================ */

h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.1;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.75rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  margin-bottom: 1.25rem;
}

h3 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

h4 {
  font-size: 1.25rem;
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: 0;
}

h5 {
  font-size: 0.85rem;
  font-family: var(--font-sans);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink);
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
  color: var(--ink-soft);
}

p:last-child {
  margin-bottom: 0;
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.lead {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--ink-soft);
  font-weight: 300;
}

.quote {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--ink);
  margin-top: 3rem;
  line-height: 1.5;
}

.quote span {
  display: block;
  margin-top: 0.75rem;
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============================================
   Buttons
   ============================================ */

.btn {
  display: inline-block;
  padding: 0.95rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
}

.btn-primary {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: var(--cream);
}

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-ghost:hover {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
}

/* ============================================
   Header
   ============================================ */

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 1.5rem 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--cream);
  text-decoration: none;
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 500;
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1;
  display: flex;
  flex-direction: column;
}

.logo-text small {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 400;
  margin-top: 0.25rem;
  opacity: 0.85;
}

.main-nav {
  display: flex;
  gap: 2.25rem;
  margin-left: auto;
  margin-right: 1.5rem;
}

.main-nav a {
  color: var(--cream);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.25s ease;
}

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

.main-nav a:hover::after {
  width: 100%;
}

.header-cta {
  background: transparent;
  color: var(--cream);
  border-color: rgba(255, 255, 255, 0.6);
}

.header-cta:hover {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--cream);
}

/* When header is solid (scrolled) */
.site-header.scrolled {
  position: fixed;
  background: var(--paper);
  padding: 0.85rem 0;
  box-shadow: 0 6px 24px -16px rgba(0,0,0,0.18);
  transition: all 0.3s ease;
}

.site-header.scrolled .logo,
.site-header.scrolled .main-nav a {
  color: var(--ink);
}

.site-header.scrolled .header-cta {
  color: var(--ink);
  border-color: var(--ink);
}

.site-header.scrolled .header-cta:hover {
  background: var(--ink);
  color: var(--cream);
}

.site-header.scrolled .nav-toggle span {
  background: var(--ink);
}

/* ============================================
   Hero
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--cream);
}

.hero-image {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 80%, rgba(45, 58, 42, 0.55), transparent 60%),
    radial-gradient(ellipse at 80% 30%, rgba(176, 122, 59, 0.4), transparent 55%),
    linear-gradient(180deg, #2a3528 0%, #4a4030 55%, #6e5634 100%);
}

.hero-image::after {
  /* karst silhouette */
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 38%;
  background:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 400' preserveAspectRatio='none'><path fill='%23161914' d='M0,400 L0,260 C40,240 70,210 110,200 C150,190 175,225 210,220 C235,217 260,180 295,170 C325,162 350,200 380,205 C415,210 440,160 475,150 C510,140 535,180 570,190 C605,200 630,150 660,140 C695,128 720,180 760,180 C795,180 820,140 855,130 C890,120 915,170 950,175 C985,180 1010,140 1045,135 C1080,130 1105,170 1145,170 C1180,170 1205,140 1245,135 C1280,130 1305,170 1345,175 C1380,180 1410,150 1440,140 L1440,400 Z'/></svg>") bottom / cover no-repeat;
  opacity: 0.85;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.15) 40%, rgba(0,0,0,0.55) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 8rem;
  padding-bottom: 8rem;
  max-width: 880px;
}

.hero h1 {
  color: var(--cream);
  margin-bottom: 1.75rem;
}

.hero .eyebrow {
  color: rgba(250, 246, 238, 0.85);
}

.hero-sub {
  font-size: 1.25rem;
  color: rgba(250, 246, 238, 0.85);
  max-width: 580px;
  margin-bottom: 2.5rem;
  font-weight: 300;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 22px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.hero-scroll span {
  display: block;
  width: 2px;
  height: 7px;
  background: var(--cream);
  animation: scroll-pulse 1.6s ease-in-out infinite;
}

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

/* ============================================
   Sections
   ============================================ */

.section {
  padding: 7rem 0;
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4rem;
}

.section-intro {
  font-size: 1.1rem;
  color: var(--ink-soft);
  margin-top: 1rem;
}

/* Welcome section */

.welcome {
  background: var(--paper);
  position: relative;
}

.welcome::before {
  /* small decorative line */
  content: '';
  display: block;
  width: 1px;
  height: 60px;
  background: var(--accent);
  margin: 0 auto 3rem;
  opacity: 0.6;
}

/* ============================================
   Testimonials
   ============================================ */

.testimonials {
  background: var(--cream-soft);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.testimonial {
  background: var(--paper);
  padding: 2.5rem 2rem 2rem;
  border-radius: 4px;
  position: relative;
  display: flex;
  flex-direction: column;
  border-top: 3px solid var(--accent);
}

.testimonial h4 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.testimonial p {
  font-size: 0.98rem;
  line-height: 1.65;
  font-style: italic;
  color: var(--ink-soft);
  margin-bottom: 1.75rem;
  flex-grow: 1;
}

.testimonial footer {
  display: flex;
  flex-direction: column;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.cite-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--ink);
}

.cite-where {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.25rem;
}

/* ============================================
   Rooms
   ============================================ */

.rooms {
  background: var(--cream);
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.room-card {
  background: var(--paper);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.room-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.room-img {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  position: relative;
}

.room-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.2));
}

.room-img-1 {
  background: linear-gradient(135deg, #c89b69 0%, #8a5c26 100%),
              radial-gradient(circle at 30% 30%, rgba(255,255,255,0.15), transparent);
}

.room-img-2 {
  background: linear-gradient(135deg, #6f8567 0%, #2d3a2a 100%);
}

.room-img-3 {
  background: linear-gradient(135deg, #b07a3b 0%, #5e4220 100%);
}

.room-img-4 {
  background: linear-gradient(135deg, #4a5c46 0%, #1f2d24 100%);
}

.room-body {
  padding: 1.75rem 1.75rem 2rem;
}

.room-body h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.room-body p {
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.room-meta {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.85rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.room-meta li {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

.room-meta li + li::before {
  content: '·';
  margin-right: 0.85rem;
  color: var(--line);
}

/* ============================================
   Amenities
   ============================================ */

.amenities {
  background: var(--cream-soft);
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem 2rem;
}

.amenity {
  text-align: left;
}

.amenity svg {
  width: 36px;
  height: 36px;
  color: var(--accent);
  margin-bottom: 1.25rem;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.amenity h4 {
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}

.amenity p {
  font-size: 0.92rem;
  color: var(--ink-soft);
}

/* ============================================
   Explore
   ============================================ */

.explore {
  background: var(--paper);
}

.explore-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

.explore-text {
  position: sticky;
  top: 6rem;
}

.explore-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.explore-list li {
  display: flex;
  gap: 1.5rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}

.explore-list li:first-child {
  padding-top: 0;
}

.explore-list li:last-child {
  border-bottom: none;
}

.distance {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--accent);
  min-width: 80px;
  font-style: italic;
}

.explore-list h4 {
  margin-bottom: 0.35rem;
  font-size: 1.15rem;
  font-family: var(--font-serif);
  font-weight: 500;
}

.explore-list p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* ============================================
   Partners
   ============================================ */

.partners {
  background: var(--paper);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.partner-card {
  display: flex;
  flex-direction: column;
  background: var(--cream);
  border-radius: 4px;
  overflow: hidden;
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  color: var(--ink);
}

.partner-img {
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
  position: relative;
}

.partner-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.2));
}

.partner-img-tours {
  background:
    radial-gradient(ellipse at 25% 70%, rgba(176, 122, 59, 0.5), transparent 55%),
    linear-gradient(135deg, #4a5c46 0%, #2d3a2a 100%);
}

.partner-img-tours::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 55%;
  background:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 200' preserveAspectRatio='none'><path fill='%231a1f1a' d='M0,200 L0,150 C50,130 90,100 140,95 C190,90 220,130 270,125 C310,120 340,90 380,90 C420,90 450,125 495,125 C530,125 560,90 605,85 C650,80 680,125 730,125 C770,125 790,100 800,95 L800,200 Z'/></svg>") bottom / cover no-repeat;
  opacity: 0.9;
}

.partner-img-spa {
  background:
    radial-gradient(ellipse at 70% 30%, rgba(255, 220, 180, 0.25), transparent 60%),
    linear-gradient(135deg, #c89b69 0%, #8a5c26 100%);
}

.partner-img-spa::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='%23faf6ee' stroke-width='1.5' stroke-linecap='round'><path d='M32 12 C32 24, 22 28, 22 36 C22 44, 32 48, 32 48 C32 48, 42 44, 42 36 C42 28, 32 24, 32 12 Z'/><path d='M14 32 C20 28, 26 34, 32 34'/><path d='M50 32 C44 28, 38 34, 32 34'/><circle cx='32' cy='52' r='2' fill='%23faf6ee'/></svg>") center / contain no-repeat;
  opacity: 0.85;
}

.partner-body {
  padding: 2rem 2rem 2.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.partner-body .eyebrow {
  margin-bottom: 0.75rem;
}

.partner-body h3 {
  font-size: 1.65rem;
  margin-bottom: 0.75rem;
}

.partner-body p {
  font-size: 0.98rem;
  flex-grow: 1;
  margin-bottom: 1.5rem;
}

.partner-link {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-dark);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.partner-link .arrow {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 1rem;
  letter-spacing: 0;
  transition: transform 0.25s ease;
}

.partner-card:hover .partner-link .arrow {
  transform: translateX(5px);
}

/* ============================================
   FAQ
   ============================================ */

.faq {
  background: var(--cream);
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.6rem 3rem 1.6rem 0;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  transition: color 0.2s ease;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-sans);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--accent);
  transition: transform 0.25s ease;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.faq-item[open] summary {
  color: var(--accent-dark);
}

.faq-item[open] summary::after {
  content: '\2013';
  transform: translateY(-50%) rotate(0deg);
}

.faq-item summary:hover {
  color: var(--accent-dark);
}

.faq-answer {
  padding: 0 3rem 1.75rem 0;
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.7;
}

.faq-answer p {
  margin-bottom: 0;
}

.faq-answer a {
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
}

/* ============================================
   Book
   ============================================ */

.book {
  background: var(--ink);
  color: var(--cream);
}

.book h2,
.book .eyebrow {
  color: var(--cream);
}

.book .eyebrow {
  color: var(--accent);
}

.book .lead {
  color: rgba(250, 246, 238, 0.75);
}

.book-platforms {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: rgba(255,255,255,0.1);
  max-width: 480px;
  margin: 3rem auto 2rem;
  border-radius: 4px;
  overflow: hidden;
}

.platform {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 1.75rem;
  background: rgba(255,255,255,0.04);
  color: var(--cream);
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  transition: background 0.2s ease;
}

.platform:hover {
  background: rgba(176, 122, 59, 0.2);
  color: var(--cream);
}

.platform-arrow {
  font-family: var(--font-sans);
  font-size: 1.2rem;
  color: var(--accent);
  transition: transform 0.2s ease;
}

.platform:hover .platform-arrow {
  transform: translateX(6px);
}

.book-note {
  color: rgba(250, 246, 238, 0.55);
  font-size: 0.92rem;
  margin-top: 1.5rem;
}

.book-note a {
  color: var(--accent);
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
}

.book-note a:hover {
  color: var(--cream);
}

/* ============================================
   Contact
   ============================================ */

.contact {
  background: var(--cream);
}

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

.contact-text h2 {
  margin-bottom: 1.5rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}

.contact-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contact-label {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

.contact-item a,
.contact-item span:last-child {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--ink);
  font-weight: 500;
}

.contact-item a:hover {
  color: var(--accent-dark);
}

/* ============================================
   Footer
   ============================================ */

.site-footer {
  background: var(--leaf);
  color: rgba(250, 246, 238, 0.7);
  padding: 5rem 0 2rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand .logo {
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.footer-brand p {
  color: rgba(250, 246, 238, 0.6);
  font-size: 0.95rem;
  max-width: 320px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-links h5 {
  color: var(--cream);
}

.footer-links a {
  display: block;
  color: rgba(250, 246, 238, 0.65);
  font-size: 0.95rem;
  padding: 0.3rem 0;
  transition: color 0.2s ease;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 2rem;
}

.footer-bottom small {
  color: rgba(250, 246, 238, 0.4);
  font-size: 0.82rem;
  letter-spacing: 0.05em;
}

/* ============================================
   Responsive
   ============================================ */

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

  .explore-text {
    position: static;
  }

  .footer-links {
    gap: 2.5rem;
  }
}

@media (max-width: 720px) {
  .section {
    padding: 4.5rem 0;
  }

  .container {
    padding: 0 1.25rem;
  }

  .main-nav,
  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .main-nav.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper);
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding: 1rem 2rem 2rem;
    box-shadow: 0 12px 32px -20px rgba(0,0,0,0.2);
  }

  .main-nav.open a {
    color: var(--ink);
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--line);
  }

  .main-nav.open a:last-child {
    border-bottom: none;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
  }

  .hero-content {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .quote {
    font-size: 1.25rem;
  }

  .contact-item a,
  .contact-item span:last-child {
    font-size: 1.15rem;
    word-break: break-word;
  }
}
