/* ============================================
   Up A Creek Vacation Rental — Styles
   Palette: Terracotta + Sand
   ============================================ */

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

:root {
  --terracotta: #C1694F;
  --terracotta-deep: #A0523D;
  --terracotta-light: #D4896F;
  --sand: #F5E6D3;
  --sand-light: #FAF3EB;
  --sand-dark: #E8D5C0;
  --cream: #FFF9F4;
  --charcoal: #2C2420;
  --charcoal-light: #4A3F38;
  --warm-gray: #8A7E78;
  --warm-gray-light: #B8ADA6;
  --white: #FFFFFF;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-sm: 0 2px 8px rgba(44, 36, 32, 0.06);
  --shadow-md: 0 8px 32px rgba(44, 36, 32, 0.10);
  --shadow-lg: 0 16px 64px rgba(44, 36, 32, 0.14);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

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

/* ========== NAV ========== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 249, 244, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(193, 105, 79, 0.08);
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(255, 249, 244, 0.95);
  box-shadow: var(--shadow-sm);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--charcoal);
}

.nav-logo-icon {
  color: var(--terracotta);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--charcoal-light);
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--terracotta);
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--terracotta);
}

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

.btn-nav {
  background: var(--terracotta);
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 100px;
  font-weight: 600;
  transition: var(--transition);
}

.btn-nav::after {
  display: none;
}

.btn-nav:hover {
  background: var(--terracotta-deep);
  color: var(--white) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(193, 105, 79, 0.3);
}

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

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--terracotta);
  color: var(--white);
  border-color: var(--terracotta);
}

.btn-primary:hover {
  background: var(--terracotta-deep);
  border-color: var(--terracotta-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(193, 105, 79, 0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}

.btn-secondary:hover {
  background: var(--charcoal);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

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

.btn-small {
  padding: 10px 20px;
  font-size: 0.85rem;
}

.btn-large {
  padding: 18px 40px;
  font-size: 1.05rem;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ========== SECTION COMMON ========== */
.section {
  padding: 120px 0;
  position: relative;
}

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

.section-header--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--terracotta);
  margin-bottom: 16px;
}

.section-eyebrow--light {
  color: var(--sand-dark);
}

.section-eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--terracotta);
  display: inline-block;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 20px;
}

.section-title em {
  font-style: italic;
  color: var(--terracotta);
}

.section-title--light {
  color: var(--white);
}

.section-title--light em {
  color: var(--sand);
}

.section-desc {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--warm-gray);
  max-width: 520px;
}

.text-accent {
  color: var(--terracotta);
}

/* ========== HERO ========== */
.hero {
  min-height: 100vh;
  padding: 120px 0 0;
  position: relative;
  overflow: hidden;
  background: var(--cream);
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-shape--top {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(193, 105, 79, 0.08) 0%, transparent 70%);
  top: -200px;
  right: -100px;
}

.hero-shape--bottom {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 230, 211, 0.6) 0%, transparent 70%);
  bottom: 0;
  left: -100px;
}

.hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  padding-right: 20px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--terracotta);
  margin-bottom: 24px;
}

.hero-eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--terracotta);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--charcoal);
  margin-bottom: 24px;
}

.hero-title em {
  font-style: italic;
  color: var(--terracotta);
}

.hero-subtitle {
  font-size: 1.12rem;
  line-height: 1.75;
  color: var(--warm-gray);
  margin-bottom: 40px;
  max-width: 480px;
}

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

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--charcoal);
}

.hero-stat-label {
  font-size: 0.8rem;
  color: var(--warm-gray);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--sand-dark);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  height: 600px;
}

.hero-img-stack {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: absolute;
  box-shadow: var(--shadow-lg);
}

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

.hero-img--main {
  width: 380px;
  height: 480px;
  top: 20px;
  right: 0;
}

.hero-img--float {
  width: 260px;
  height: 200px;
  bottom: 40px;
  left: -20px;
  border: 4px solid var(--cream);
  box-shadow: var(--shadow-md);
}

.hero-img-accent {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, transparent 60%, rgba(193, 105, 79, 0.15) 100%);
}

.hero-badge {
  position: absolute;
  bottom: 260px;
  right: -10px;
  background: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal);
  z-index: 2;
}

.hero-badge svg {
  color: var(--terracotta);
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  color: var(--sand-light);
}

.hero-wave svg {
  width: 100%;
  height: 80px;
  display: block;
}

/* ========== SPACES ========== */
.spaces {
  background: var(--sand-light);
  padding-bottom: 0;
}

.spaces-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 0;
}

.space-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

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

.space-card--large {
  grid-row: span 2;
}

.space-card--large .space-card-img {
  height: 60%;
}

.space-card-img {
  height: 220px;
  overflow: hidden;
}

.space-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.space-card:hover .space-card-img img {
  transform: scale(1.05);
}

.space-card-content {
  padding: 28px;
}

.space-card-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--terracotta);
  background: rgba(193, 105, 79, 0.08);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.space-card-content h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--charcoal);
}

.space-card-content p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--warm-gray);
}

.spaces-accent-block {
  height: 12px;
  background: linear-gradient(90deg, var(--terracotta) 0%, var(--terracotta-light) 50%, var(--sand) 100%);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

/* ========== EXPERIENCE ========== */
.experience {
  background: var(--charcoal);
  color: var(--white);
  overflow: hidden;
}

.exp-bg-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.exp-bg-shape--1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(193, 105, 79, 0.15) 0%, transparent 70%);
  top: -150px;
  left: -150px;
}

.exp-bg-shape--2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(245, 230, 211, 0.06) 0%, transparent 70%);
  bottom: -50px;
  right: 10%;
}

.exp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.exp-visual {
  position: relative;
  height: 560px;
}

.exp-img-main {
  width: 100%;
  height: 440px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.exp-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.exp-img-secondary {
  position: absolute;
  bottom: 0;
  right: -40px;
  width: 240px;
  height: 180px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 4px solid var(--charcoal);
  box-shadow: var(--shadow-md);
}

.exp-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.exp-floating-card {
  position: absolute;
  top: 40px;
  right: -20px;
  background: var(--terracotta);
  color: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
  z-index: 2;
}

.exp-floating-card strong {
  display: block;
  font-size: 0.95rem;
}

.exp-floating-card span {
  font-size: 0.8rem;
  opacity: 0.8;
}

.exp-content .section-eyebrow {
  color: var(--terracotta-light);
}

.exp-content .section-eyebrow .section-eyebrow-dot {
  background: var(--terracotta-light);
}

.exp-content .section-title {
  color: var(--white);
}

.exp-content .section-title em {
  color: var(--terracotta-light);
}

.exp-desc {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--warm-gray-light);
  margin-bottom: 40px;
}

.exp-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.exp-feature-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(193, 105, 79, 0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terracotta-light);
}

.exp-feature strong {
  display: block;
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 2px;
}

.exp-feature span {
  font-size: 0.88rem;
  color: var(--warm-gray-light);
  line-height: 1.5;
}

/* ========== LOCATION ========== */
.location {
  background: var(--sand-light);
}

.location-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}

.location-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 400px;
  background: var(--sand-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-placeholder {
  text-align: center;
  padding: 40px;
  color: var(--charcoal);
}

.map-placeholder svg {
  color: var(--terracotta);
  margin-bottom: 16px;
}

.map-placeholder p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 24px;
  color: var(--charcoal-light);
}

.location-neighbors {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

.location-neighbors h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 28px;
  color: var(--charcoal);
}

.neighbor-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.neighbor-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--sand);
}

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

.neighbor-tag {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--terracotta);
  background: rgba(193, 105, 79, 0.08);
  padding: 4px 10px;
  border-radius: 100px;
  white-space: nowrap;
}

.neighbor-name {
  flex: 1;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--charcoal);
}

.neighbor-dist {
  font-size: 0.82rem;
  color: var(--warm-gray);
}

/* ========== GALLERY ========== */
.gallery {
  background: var(--cream);
  padding: 100px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(44, 36, 32, 0.3) 100%);
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item--1 {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}

.gallery-item--1 img {
  height: 100%;
  min-height: 420px;
}

.gallery-item--2 img { height: 200px; }
.gallery-item--3 img { height: 200px; }
.gallery-item--4 img { height: 200px; }
.gallery-item--5 img { height: 200px; }
.gallery-item--6 img { height: 200px; }

/* ========== CTA ========== */
.cta {
  background: var(--terracotta);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-shape {
  position: absolute;
  border-radius: 50%;
}

.cta-shape--1 {
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.04);
  top: -150px;
  right: -100px;
}

.cta-shape--2 {
  width: 250px;
  height: 250px;
  background: rgba(255, 255, 255, 0.03);
  bottom: -80px;
  left: 10%;
}

.cta-shape--3 {
  width: 120px;
  height: 120px;
  background: rgba(255, 255, 255, 0.05);
  top: 30%;
  left: 5%;
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.cta-content .section-title {
  margin-bottom: 20px;
}

.cta-desc {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========== CONTACT ========== */
.contact {
  background: var(--sand-light);
}

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

.contact-info .section-title {
  margin-bottom: 16px;
}

.contact-desc {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--warm-gray);
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terracotta);
  box-shadow: var(--shadow-sm);
}

.contact-detail strong {
  display: block;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--warm-gray);
  margin-bottom: 4px;
}

.contact-detail a,
.contact-detail span {
  font-size: 1rem;
  color: var(--charcoal);
  font-weight: 500;
}

.contact-detail a:hover {
  color: var(--terracotta);
}

/* Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

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

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal-light);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 16px;
  border: 1.5px solid var(--sand-dark);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--sand-light);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--terracotta);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(193, 105, 79, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--warm-gray-light);
}

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

.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(193, 105, 79, 0.08);
  border-radius: var(--radius-sm);
  color: var(--terracotta-deep);
  font-size: 0.95rem;
  font-weight: 500;
}

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

.form-success svg {
  color: var(--terracotta);
  min-width: 20px;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--charcoal);
  color: var(--white);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--warm-gray-light);
  margin-top: 16px;
  max-width: 300px;
}

.footer-logo {
  color: var(--white);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links strong {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--warm-gray-light);
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.95rem;
  color: var(--sand);
  transition: var(--transition);
}

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

.footer-links span {
  font-size: 0.95rem;
  color: var(--sand);
  line-height: 1.6;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 0.85rem;
  color: var(--warm-gray);
}

/* ========== ANIMATIONS ========== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-content {
    padding-right: 0;
    text-align: center;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-visual {
    height: 450px;
    max-width: 500px;
    margin: 0 auto;
  }

  .hero-img--main {
    width: 300px;
    height: 380px;
  }

  .hero-img--float {
    width: 200px;
    height: 160px;
  }

  .exp-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .exp-visual {
    height: 400px;
    max-width: 500px;
    margin: 0 auto;
  }

  .exp-floating-card {
    right: 0;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(255, 249, 244, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 32px 24px;
    gap: 20px;
    border-bottom: 1px solid rgba(193, 105, 79, 0.08);
    transform: translateY(-120%);
    transition: var(--transition);
    box-shadow: var(--shadow-md);
  }

  .nav-links.open {
    transform: translateY(0);
  }

  .nav-toggle {
    display: flex;
  }

  .section {
    padding: 80px 0;
  }

  .hero {
    padding-top: 100px;
    min-height: auto;
  }

  .hero-visual {
    height: 360px;
  }

  .hero-img--main {
    width: 240px;
    height: 300px;
    right: 10px;
  }

  .hero-img--float {
    width: 160px;
    height: 120px;
    left: 0;
    bottom: 20px;
  }

  .hero-badge {
    display: none;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 20px;
  }

  .hero-stat-divider {
    display: none;
  }

  .spaces-grid {
    grid-template-columns: 1fr;
  }

  .space-card--large {
    grid-row: span 1;
  }

  .space-card--large .space-card-img {
    height: 240px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-item--1 {
    grid-column: 1 / 2;
    grid-row: span 1;
  }

  .gallery-item--1 img {
    min-height: 200px;
  }

  .location-grid {
    grid-template-columns: 1fr;
  }

  .location-map {
    min-height: 280px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-wrap {
    padding: 28px;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .exp-img-secondary {
    right: -10px;
    width: 180px;
    height: 140px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.9rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item--1 img {
    min-height: 240px;
  }

  .exp-visual {
    height: 300px;
  }

  .exp-img-main {
    height: 280px;
  }

  .exp-img-secondary {
    display: none;
  }
}
