/* ============================================
   Westways Court — Editorial Hotel Website
   Burgundy + Blush | Playfair Display + Inter
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  --burgundy: #7B2D3B;
  --burgundy-dark: #5c1f2b;
  --burgundy-light: #a11430;
  --blush: #F5E6E0;
  --blush-light: #FFF8F6;
  --cream: #FDF8F5;
  --charcoal: #2A2222;
  --charcoal-light: #5a4a4a;
  --white: #FFFFFF;
  
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
  
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

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

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

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

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

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

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

/* --- Container --- */
.container {
  max-width: 1280px;
  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;
  background: rgba(253, 248, 245, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(123, 45, 59, 0.08);
  transition: background 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.nav-fixed.scrolled {
  background: rgba(253, 248, 245, 0.95);
  box-shadow: 0 1px 20px rgba(123, 45, 59, 0.08);
}

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

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--charcoal);
}

.nav-logo-mark {
  width: 36px;
  height: 36px;
  background: var(--burgundy);
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: transform 0.3s var(--ease-out);
}

.nav-logo:hover .nav-logo-mark {
  transform: rotate(-5deg) scale(1.05);
}

.nav-logo-text {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

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

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

.nav-link {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--charcoal-light);
  transition: color 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--burgundy);
  transition: width 0.3s var(--ease-out);
}

.nav-link:hover {
  color: var(--burgundy);
}

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

.nav-cta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--burgundy);
  padding: 10px 20px;
  border: 1.5px solid var(--burgundy);
  border-radius: 100px;
  transition: all 0.3s var(--ease-out);
}

.nav-cta:hover {
  background: var(--burgundy);
  color: var(--white);
  transform: translateY(-1px);
}

.nav-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  color: var(--charcoal);
  transition: background 0.3s ease;
}

@media (min-width: 1024px) {
  .nav-menu-btn {
    display: none;
  }
}

.nav-menu-btn:hover {
  background: rgba(123, 45, 59, 0.08);
}

/* --- Mobile Menu --- */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(42, 34, 34, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease-out), visibility 0.4s var(--ease-out);
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  max-width: 85vw;
  height: 100%;
  background: var(--cream);
  padding: 96px 32px 40px;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease-out);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-menu-overlay.active .mobile-menu-content {
  transform: translateX(0);
}

.mobile-menu-link {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 500;
  color: var(--charcoal);
  padding: 12px 0;
  border-bottom: 1px solid rgba(123, 45, 59, 0.1);
  transition: color 0.3s ease, padding-left 0.3s var(--ease-out);
}

.mobile-menu-link:hover {
  color: var(--burgundy);
  padding-left: 8px;
}

.mobile-menu-phone {
  display: flex;
  align-items: center;
  margin-top: 24px;
  font-size: 16px;
  font-weight: 600;
  color: var(--burgundy);
  padding: 16px 20px;
  background: rgba(123, 45, 59, 0.06);
  border-radius: 12px;
}

/* --- Hero Section --- */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0 60px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--cream) 0%, var(--blush-light) 50%, var(--blush) 100%);
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: radial-gradient(circle at 2px 2px, var(--burgundy) 1px, transparent 0);
  background-size: 32px 32px;
}

.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

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

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

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

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 64px;
  }
}

/* Hero Content */
.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 1.5px;
  background: var(--burgundy);
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--charcoal);
  margin-bottom: 24px;
}

.hero-headline em {
  font-style: italic;
  color: var(--burgundy);
}

.hero-subheadline {
  font-size: 17px;
  line-height: 1.7;
  color: var(--charcoal-light);
  max-width: 520px;
  margin-bottom: 40px;
}

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: var(--burgundy);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 100px;
  transition: all 0.3s var(--ease-out);
  box-shadow: 0 4px 20px rgba(123, 45, 59, 0.25);
}

.btn-primary:hover {
  background: var(--burgundy-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(123, 45, 59, 0.35);
}

.btn-icon {
  width: 16px;
  height: 16px;
  transition: transform 0.3s var(--ease-out);
}

.btn-primary:hover .btn-icon {
  transform: translateX(3px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: transparent;
  color: var(--charcoal);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 100px;
  border: 1.5px solid rgba(42, 34, 34, 0.2);
  transition: all 0.3s var(--ease-out);
}

.btn-secondary:hover {
  border-color: var(--burgundy);
  color: var(--burgundy);
  transform: translateY(-2px);
}

.btn-icon-sm {
  width: 16px;
  height: 16px;
}

/* Hero Trust */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--charcoal-light);
}

.trust-icon {
  width: 18px;
  height: 18px;
  color: var(--burgundy);
  flex-shrink: 0;
}

/* Hero Images */
.hero-images {
  position: relative;
  height: 500px;
}

@media (min-width: 1024px) {
  .hero-images {
    height: 620px;
  }
}

.hero-img-main {
  width: 75%;
  height: 80%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(123, 45, 59, 0.15);
  position: relative;
  z-index: 2;
}

.hero-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.hero-img-main:hover img {
  transform: scale(1.03);
}

.hero-img-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 45%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(123, 45, 59, 0.12);
  border: 4px solid var(--cream);
  z-index: 3;
}

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

.hero-img-badge {
  position: absolute;
  top: 20%;
  right: 10%;
  z-index: 4;
  background: var(--white);
  border-radius: 16px;
  padding: 20px 24px;
  box-shadow: 0 10px 40px rgba(123, 45, 59, 0.12);
  animation: floatBadge 4s ease-in-out infinite;
}

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

.badge-content {
  text-align: center;
}

.badge-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 700;
  color: var(--burgundy);
  line-height: 1;
}

.badge-label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal-light);
  margin-top: 4px;
}

/* Hero Scroll */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal-light);
  animation: scrollBounce 2s ease-in-out infinite;
}

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

.scroll-arrow {
  width: 20px;
  height: 20px;
  color: var(--burgundy);
}

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

.divider-line {
  width: 200px;
  color: var(--burgundy);
}

/* --- Section Shared --- */
.section-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--charcoal);
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 17px;
  line-height: 1.7;
  color: var(--charcoal-light);
  max-width: 560px;
}

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

@media (min-width: 768px) {
  .section-header {
    margin-bottom: 80px;
  }
}

/* --- Rooms Section --- */
.rooms-section {
  padding: 100px 0;
  background: var(--white);
}

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

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

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

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

.room-card {
  background: var(--cream);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.room-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(123, 45, 59, 0.1);
}

.room-card-img {
  position: relative;
  height: 240px;
  overflow: hidden;
}

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

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

.room-card-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 14px;
  background: var(--burgundy);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 100px;
}

.room-card-tag.tag-premium {
  background: var(--charcoal);
}

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

.room-card-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  margin-bottom: 10px;
}

.room-card-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--charcoal-light);
  margin-bottom: 20px;
}

.room-card-features {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 24px;
}

.room-card-features li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--charcoal);
}

.feat-check {
  width: 14px;
  height: 14px;
  color: var(--burgundy);
  flex-shrink: 0;
}

.btn-room {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--burgundy);
  padding-bottom: 4px;
  border-bottom: 1.5px solid var(--burgundy);
  transition: all 0.3s var(--ease-out);
}

.btn-room:hover {
  gap: 10px;
  color: var(--burgundy-dark);
  border-color: var(--burgundy-dark);
}

.btn-room-arrow {
  width: 14px;
  height: 14px;
  transition: transform 0.3s var(--ease-out);
}

.btn-room:hover .btn-room-arrow {
  transform: translateX(4px);
}

/* --- Experience Section --- */
.experience-section {
  padding: 100px 0;
  background: var(--cream);
  overflow: hidden;
}

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

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

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

/* Experience Images */
.exp-img-stack {
  position: relative;
  height: 560px;
}

.exp-img-primary {
  width: 75%;
  height: 85%;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(123, 45, 59, 0.12);
}

.exp-img-secondary {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: auto;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(123, 45, 59, 0.15);
  border: 4px solid var(--cream);
}

/* Experience Content */
.experience-eyebrow {
  margin-bottom: 12px;
}

.experience-title {
  margin-bottom: 40px;
}

.experience-features {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

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

.exp-feature-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: rgba(123, 45, 59, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--burgundy);
  transition: background 0.3s ease, transform 0.3s var(--ease-out);
}

.exp-feature:hover .exp-feature-icon {
  background: var(--burgundy);
  color: var(--white);
  transform: rotate(-5deg);
}

.exp-feature-icon svg {
  width: 22px;
  height: 22px;
}

.exp-feature-title {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.exp-feature-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--charcoal-light);
}

/* --- Location Section --- */
.location-section {
  padding: 100px 0;
  background: var(--white);
}

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

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

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

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

.location-desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--charcoal-light);
  margin-bottom: 36px;
}

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

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

.loc-icon {
  width: 20px;
  height: 20px;
  color: var(--burgundy);
  flex-shrink: 0;
  margin-top: 2px;
}

.location-detail strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.location-detail span,
.location-detail a {
  font-size: 15px;
  color: var(--charcoal-light);
  transition: color 0.3s ease;
}

.location-detail a:hover {
  color: var(--burgundy);
}

.location-map {
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(123, 45, 59, 0.1);
}

@media (min-width: 768px) {
  .location-map {
    height: 480px;
  }
}

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

.cta-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: radial-gradient(circle at 2px 2px, var(--white) 1px, transparent 0);
  background-size: 28px 28px;
}

.cta-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}

@media (min-width: 1024px) {
  .cta-inner {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}

.cta-eyebrow {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 16px;
}

.cta-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: 20px;
}

.cta-desc {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  max-width: 480px;
}

/* Contact Form */
.cta-form-wrapper {
  background: var(--white);
  border-radius: 24px;
  padding: 36px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

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

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

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

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

.form-group-full {
  grid-column: 1 / -1;
}

.form-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal);
}

.form-input {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid rgba(42, 34, 34, 0.12);
  border-radius: 12px;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--charcoal);
  background: var(--cream);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
}

.form-input::placeholder {
  color: var(--charcoal-light);
  opacity: 0.6;
}

.form-input:focus {
  border-color: var(--burgundy);
  box-shadow: 0 0 0 3px rgba(123, 45, 59, 0.1);
}

.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='%237B2D3B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

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

.btn-form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  background: var(--burgundy);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  box-shadow: 0 4px 20px rgba(123, 45, 59, 0.3);
  width: 100%;
}

.btn-form-submit:hover {
  background: var(--burgundy-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(123, 45, 59, 0.4);
}

.btn-form-arrow {
  width: 16px;
  height: 16px;
  transition: transform 0.3s var(--ease-out);
}

.btn-form-submit:hover .btn-form-arrow {
  transform: translate(3px, -3px);
}

/* Form Success */
.form-success {
  text-align: center;
  padding: 20px 0;
}

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

.success-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  color: var(--burgundy);
}

.success-title {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 10px;
}

.success-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--charcoal-light);
  margin-bottom: 20px;
}

.success-alternative {
  font-size: 14px;
  color: var(--charcoal-light);
  transition: color 0.3s ease;
}

.success-alternative:hover {
  color: var(--burgundy);
}

/* --- Footer --- */
.footer {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 0;
}

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

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

.footer-brand {
  max-width: 320px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  text-decoration: none;
}

.footer-logo-mark {
  width: 36px;
  height: 36px;
  background: var(--burgundy);
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

.footer-logo-text {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
}

.footer-tagline {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
}

.footer-heading {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 20px;
}

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

.footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease, padding-left 0.3s var(--ease-out);
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 6px;
}

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

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 1.5;
}

.footer-icon {
  width: 16px;
  height: 16px;
  color: var(--burgundy);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-contact-list a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.footer-contact-list a:hover {
  color: var(--white);
}

.footer-bottom {
  margin-top: 64px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer-copyright {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
}

.footer-location {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
}

/* --- Scroll Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.revealed {
  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; }
