/* ========================================
   Sea Star Beach Resort — Custom Styles
   ======================================== */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  overflow-x: hidden;
  background-color: #fefdf8;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* --- Utility --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 768px) {
  .container {
    padding: 0 48px;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 64px;
  }
}

/* --- Navigation --- */
.nav-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.nav-fixed.scrolled {
  background: rgba(254, 253, 248, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(6, 80, 59, 0.08);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #fefdf8;
  transition: color 0.3s ease;
}

.nav-fixed.scrolled .nav-logo {
  color: #0f261c;
}

.nav-logo-text {
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.85rem;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}

.nav-menu {
  display: none;
  align-items: center;
  gap: 32px;
}

@media (min-width: 768px) {
  .nav-menu {
    display: flex;
  }
}

.nav-link {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(254, 253, 248, 0.8);
  transition: color 0.3s ease;
  position: relative;
}

.nav-fixed.scrolled .nav-link {
  color: rgba(15, 38, 28, 0.6);
}

.nav-link:hover {
  color: #fefdf8;
}

.nav-fixed.scrolled .nav-link:hover {
  color: #0f261c;
}

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

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

.nav-link--cta {
  padding: 8px 20px;
  border: 1px solid rgba(254, 253, 248, 0.4);
  border-radius: 100px;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.nav-fixed.scrolled .nav-link--cta {
  border-color: rgba(6, 78, 59, 0.3);
  color: rgba(15, 38, 28, 0.7);
}

.nav-link--cta:hover {
  background: rgba(254, 253, 248, 0.15);
}

.nav-fixed.scrolled .nav-link--cta:hover {
  background: rgba(6, 78, 59, 0.06);
}

/* Mobile Toggle */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}

@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }
}

.nav-toggle-line {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #fefdf8;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-fixed.scrolled .nav-toggle-line {
  background: #0f261c;
}

.nav-toggle.active .nav-toggle-line:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-toggle.active .nav-toggle-line:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active .nav-toggle-line:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile Overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(6, 20, 16, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.nav-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.nav-overlay-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.nav-overlay-link {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: rgba(254, 253, 248, 0.7);
  transition: color 0.3s ease;
  letter-spacing: 0.04em;
}

.nav-overlay-link:hover {
  color: #fefdf8;
}

.nav-overlay-link--cta {
  margin-top: 12px;
  padding: 12px 32px;
  border: 1px solid rgba(254, 253, 248, 0.3);
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(254, 253, 248, 0.8);
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(6, 20, 16, 0.72) 0%,
    rgba(15, 38, 28, 0.55) 50%,
    rgba(30, 60, 45, 0.45) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 24px 160px;
  width: 100%;
}

@media (min-width: 768px) {
  .hero-content {
    padding: 160px 48px 200px;
  }
}

@media (min-width: 1024px) {
  .hero-content {
    padding: 180px 64px 220px;
    max-width: 720px;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(254, 253, 248, 0.7);
  margin-bottom: 28px;
}

.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1.08;
  color: #fefdf8;
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

.hero-headline-accent {
  font-style: italic;
  font-weight: 300;
  color: rgba(212, 197, 169, 0.9);
}

.hero-sub {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  font-weight: 300;
  line-height: 1.7;
  color: rgba(254, 253, 248, 0.65);
  max-width: 480px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 100px;
  transition: all 0.35s ease;
  white-space: nowrap;
}

.btn--primary {
  background: #064e3b;
  color: #fefdf8;
  border: 1px solid #064e3b;
}

.btn--primary:hover {
  background: #0f261c;
  border-color: #0f261c;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(6, 78, 59, 0.25);
}

.btn--ghost {
  background: transparent;
  color: rgba(254, 253, 248, 0.85);
  border: 1px solid rgba(254, 253, 248, 0.3);
}

.btn--ghost:hover {
  background: rgba(254, 253, 248, 0.1);
  border-color: rgba(254, 253, 248, 0.5);
}

.btn--outline {
  background: transparent;
  color: #0f261c;
  border: 1px solid rgba(6, 78, 59, 0.3);
}

.btn--outline:hover {
  background: rgba(6, 78, 59, 0.06);
  border-color: #064e3b;
}

.btn--cream {
  background: #fefdf8;
  color: #0f261c;
  border: 1px solid #fefdf8;
}

.btn--cream:hover {
  background: #fdf9ed;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn--sm {
  padding: 10px 24px;
  font-size: 0.72rem;
}

.btn--full {
  width: 100%;
}

/* --- Floating Stat Cards --- */
.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  gap: 1px;
  background: rgba(6, 78, 59, 0.15);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

@media (min-width: 768px) {
  .hero-stats {
    grid-template-columns: repeat(4, 1fr);
    padding: 0 48px;
  }
}

.stat-card {
  padding: 28px 24px;
  background: rgba(254, 253, 248, 0.08);
  border: 1px solid rgba(254, 253, 248, 0.1);
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: background 0.3s ease;
}

.stat-card:hover {
  background: rgba(254, 253, 248, 0.14);
}

.stat-card--accent {
  flex-direction: row;
  align-items: center;
  gap: 12px;
}

.stat-card-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: #d4c5a9;
  line-height: 1;
}

.stat-card-label {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(254, 253, 248, 0.55);
}

.stat-card--delay {
  transition-delay: 0.1s;
}

.stat-card--delay2 {
  transition-delay: 0.2s;
}

/* --- Section Divider --- */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
}

/* --- Section Base --- */
.section {
  padding: 100px 0;
}

@media (min-width: 768px) {
  .section {
    padding: 120px 0;
  }
}

.section-header {
  max-width: 640px;
  margin-bottom: 64px;
}

.section-header.text-center {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #064e3b;
  margin-bottom: 16px;
  position: relative;
  padding-left: 24px;
}

.section-tag::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 1px;
  background: #064e3b;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 300;
  line-height: 1.12;
  color: #0f261c;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.title-accent {
  font-style: italic;
  color: #064e3b;
}

.section-desc {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(15, 38, 28, 0.55);
  max-width: 520px;
}

.section-header.text-center .section-desc {
  margin: 0 auto;
}

/* --- Rooms --- */
.rooms {
  background: #fefdf8;
}

.rooms-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .rooms-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

.room-card {
  background: #fdf9ed;
  border: 1px solid rgba(6, 78, 59, 0.08);
  border-radius: 2px;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.room-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(6, 78, 59, 0.1);
}

.room-card--featured {
  border-color: rgba(6, 78, 59, 0.2);
  background: #f0f7f4;
}

.room-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 6 / 4.2;
}

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

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

.room-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #064e3b;
  color: #fefdf8;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
}

.room-card-body {
  padding: 28px;
}

.room-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.room-tag {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(15, 38, 28, 0.5);
  padding: 4px 10px;
  border: 1px solid rgba(6, 78, 59, 0.15);
  border-radius: 100px;
}

.room-tag--accent {
  background: rgba(6, 78, 59, 0.08);
  color: #064e3b;
  border-color: rgba(6, 78, 59, 0.25);
}

.room-size {
  font-size: 0.75rem;
  color: rgba(15, 38, 28, 0.4);
  font-weight: 300;
}

.room-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: #0f261c;
  margin-bottom: 10px;
}

.room-card-desc {
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(15, 38, 28, 0.55);
  margin-bottom: 20px;
}

.room-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.room-amenities li {
  list-style: none;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(15, 38, 28, 0.5);
  padding: 4px 10px;
  background: rgba(6, 78, 59, 0.05);
  border-radius: 100px;
}

/* --- Experience --- */
.experience {
  background: #f0f7f4;
}

.experience-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: center;
}

@media (min-width: 900px) {
  .experience-layout {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}

.experience-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-top: 48px;
}

@media (min-width: 500px) {
  .experience-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

.exp-feature {
  display: flex;
  gap: 16px;
}

.exp-feature-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(6, 78, 59, 0.2);
  border-radius: 50%;
  color: #064e3b;
}

.exp-feature-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: #0f261c;
  margin-bottom: 4px;
}

.exp-feature-desc {
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(15, 38, 28, 0.5);
}

/* Experience Gallery */
.exp-gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 500px) {
  .exp-gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px;
  }
}

@media (min-width: 768px) {
  .exp-gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 260px 260px;
  }
}

.exp-gallery-item {
  overflow: hidden;
  border-radius: 2px;
}

.exp-gallery-item--tall {
  grid-row: 1 / 3;
}

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

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

/* --- About --- */
.about {
  background: #fefdf8;
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 900px) {
  .about-layout {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 7 / 9;
  object-fit: cover;
  border-radius: 2px;
}

.about-image-accent {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(6, 78, 59, 0.15);
  border-radius: 2px;
  z-index: -1;
}

@media (min-width: 768px) {
  .about-image-accent {
    width: 160px;
    height: 160px;
    bottom: -32px;
    right: -32px;
  }
}

.about-content {
  max-width: 480px;
}

.about-text {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(15, 38, 28, 0.6);
  margin-bottom: 20px;
}

.about-signature {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid rgba(6, 78, 59, 0.1);
}

.about-signature-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 400;
  color: rgba(15, 38, 28, 0.5);
}

/* --- Location --- */
.location {
  background: #fdf9ed;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-top: 64px;
}

@media (min-width: 768px) {
  .location-grid {
    grid-template-columns: 1.4fr 1fr;
    gap: 64px;
  }
}

.location-map {
  border-radius: 2px;
  overflow: hidden;
  min-height: 320px;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  min-height: 320px;
  background: linear-gradient(135deg, #e8f0ec 0%, #d4e4d8 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #064e3b;
  border-radius: 2px;
}

.map-placeholder p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
}

.map-link {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #064e3b;
  border-bottom: 1px solid rgba(6, 78, 59, 0.4);
  padding-bottom: 2px;
  transition: border-color 0.3s ease;
}

.map-link:hover {
  border-color: #064e3b;
}

.location-details {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.loc-detail {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(6, 78, 59, 0.1);
}

.loc-detail:first-child {
  padding-top: 0;
}

.loc-detail:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.loc-detail-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(15, 38, 28, 0.4);
}

.loc-detail-value {
  font-size: 1rem;
  font-weight: 300;
  color: #0f261c;
  line-height: 1.5;
}

.loc-detail-link {
  transition: color 0.3s ease;
}

.loc-detail-link:hover {
  color: #064e3b;
}

/* --- Contact --- */
.contact {
  background: #fefdf8;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: start;
}

@media (min-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
  }
}

.contact-info {
  max-width: 400px;
}

.contact-desc {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(15, 38, 28, 0.55);
  margin-bottom: 36px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-method {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(15, 38, 28, 0.7);
  transition: color 0.3s ease;
}

.contact-method:hover {
  color: #064e3b;
}

/* Form */
.contact-form-wrap {
  background: #fdf9ed;
  border: 1px solid rgba(6, 78, 59, 0.08);
  border-radius: 2px;
  padding: 40px;
}

@media (min-width: 500px) {
  .contact-form-wrap {
    padding: 48px;
  }
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 500px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(15, 38, 28, 0.5);
}

.form-input {
  background: #fefdf8;
  border: 1px solid rgba(6, 78, 59, 0.15);
  border-radius: 2px;
  padding: 12px 16px;
  font-size: 0.9rem;
  font-weight: 300;
  font-family: 'Inter', sans-serif;
  color: #0f261c;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
  width: 100%;
}

.form-input:focus {
  border-color: #064e3b;
  box-shadow: 0 0 0 3px rgba(6, 78, 59, 0.08);
}

.form-input::placeholder {
  color: rgba(15, 38, 28, 0.25);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%230f261c' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

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

.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 24px;
  gap: 16px;
}

.form-success.active {
  display: flex;
}

.contact-form.hidden {
  display: none;
}

.form-success-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #0f261c;
}

.form-success-desc {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(15, 38, 28, 0.5);
  max-width: 300px;
}

/* --- CTA Band --- */
.cta-band {
  background: #064e3b;
  padding: 64px 0;
}

.cta-band-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

@media (min-width: 600px) {
  .cta-band-inner {
    flex-direction: row;
    justify-content: center;
    gap: 32px;
  }
}

.cta-band-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(254, 253, 248, 0.7);
}

/* --- Footer --- */
.footer {
  background: #061410;
  padding: 64px 0 0;
  color: rgba(254, 253, 248, 0.5);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 48px;
}

@media (min-width: 768px) {
  .footer-top {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
  }
}

.footer-brand {}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: rgba(254, 253, 248, 0.8);
  margin-bottom: 12px;
}

.footer-logo-text {
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}

.footer-tagline {
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(254, 253, 248, 0.35);
  max-width: 260px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav-link {
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: rgba(254, 253, 248, 0.4);
  transition: color 0.3s ease;
}

.footer-nav-link:hover {
  color: rgba(254, 253, 248, 0.8);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact-link {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(254, 253, 248, 0.4);
  transition: color 0.3s ease;
}

.footer-contact-link:hover {
  color: rgba(254, 253, 248, 0.8);
}

.footer-address {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(254, 253, 248, 0.3);
}

.footer-bottom {
  border-top: 1px solid rgba(254, 253, 248, 0.06);
  padding: 24px 0;
}

.footer-copy {
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: rgba(254, 253, 248, 0.2);
}

/* --- Animations --- */
[data-aos] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-aos].aos-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-aos].aos-visible:nth-child(2) { transition-delay: 0.1s; }
[data-aos].aos-visible:nth-child(3) { transition-delay: 0.2s; }
[data-aos].aos-visible:nth-child(4) { transition-delay: 0.3s; }

/* --- Scrollbar --- */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #fefdf8;
}

::-webkit-scrollbar-thumb {
  background: rgba(6, 78, 59, 0.2);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(6, 78, 59, 0.4);
}
