/* ========================================
   Let It Glow By Rocio Esthetics
   Clean Minimalist — Charcoal + Coral
   ======================================== */

/* --- CSS Custom Properties --- */
:root {
  --charcoal: #1C1C1E;
  --charcoal-light: #2C2C2E;
  --charcoal-mid: #3A3A3C;
  --coral: #E8735A;
  --coral-light: #F09080;
  --coral-pale: #FDF0ED;
  --coral-ghost: #FEF5F3;
  --cream: #FAFAF8;
  --white: #FFFFFF;
  --gray-50: #FAFAF8;
  --gray-100: #F5F5F3;
  --gray-200: #E8E8E4;
  --gray-300: #D4D4CF;
  --gray-400: #A8A8A0;
  --gray-500: #787870;
  --gray-600: #5A5A54;
  --gray-700: #3A3A36;
  --gray-800: #2A2A28;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  --transition-fast: 0.2s ease;
  --transition-med: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* --- 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 {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--charcoal);
  background-color: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

/* --- Typography --- */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.accent-italic {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  color: var(--coral);
}

.accent-italic-light {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  color: var(--coral-light);
}

/* --- Section Tag --- */
.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: var(--space-md);
}

.section-tag-light {
  color: var(--coral-light);
}

/* --- Section Title --- */
.section-title {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  color: var(--charcoal);
  margin-bottom: var(--space-md);
}

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

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

.section-divider::before,
.section-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gray-200);
}

.section-divider-mark {
  padding: 0 var(--space-md);
  font-size: 0.7rem;
  color: var(--gray-400);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

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

.btn-primary:hover {
  background: var(--coral-light);
  border-color: var(--coral-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(232, 115, 90, 0.3);
}

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

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

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

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

.btn-lg {
  padding: 1.2rem 2.5rem;
  font-size: 0.85rem;
}

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

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 250, 248, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gray-200);
  transition: all var(--transition-med);
}

.nav.scrolled {
  box-shadow: 0 1px 20px rgba(28, 28, 30, 0.06);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.nav-logo-mark {
  font-size: 0.8rem;
  color: var(--coral);
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--charcoal);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav-links a {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-600);
  transition: color var(--transition-fast);
  position: relative;
}

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

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

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

.nav-cta {
  background: var(--charcoal);
  color: var(--white) !important;
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all var(--transition-fast) !important;
}

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

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

/* Mobile Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle-line {
  width: 22px;
  height: 1.5px;
  background: var(--charcoal);
  transition: all var(--transition-fast);
  transform-origin: center;
}

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

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

/* --- Mobile Menu --- */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  transform: translateX(100%);
  transition: transform var(--transition-med);
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu-close {
  position: absolute;
  top: var(--space-lg);
  right: var(--space-lg);
  background: none;
  border: none;
  cursor: pointer;
  color: var(--charcoal);
  padding: 4px;
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

.mobile-link {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--charcoal);
  transition: color var(--transition-fast);
}

.mobile-link:hover {
  color: var(--coral);
}

.mobile-cta {
  margin-top: var(--space-md);
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white) !important;
  background: var(--coral);
  padding: 1rem 2.5rem;
  border-radius: var(--radius-sm);
}

.mobile-cta:hover {
  background: var(--coral-light);
}

/* --- Hero Section --- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px var(--space-lg) var(--space-xl);
  position: relative;
  overflow: hidden;
  background: var(--cream);
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(232, 115, 90, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(232, 115, 90, 0.04) 0%, transparent 40%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: var(--space-xl);
  align-items: center;
}

.hero-tag {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: var(--space-lg);
}

.hero-tag-line {
  width: 32px;
  height: 1px;
  background: var(--coral);
}

.hero-headline {
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  color: var(--charcoal);
  margin-bottom: var(--space-lg);
  line-height: 1.08;
}

.hero-headline em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  color: var(--coral);
}

.hero-sub {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--gray-600);
  max-width: 480px;
  margin-bottom: var(--space-xl);
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--gray-200);
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.hero-stat-number {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--charcoal);
}

.hero-stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-400);
}

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

/* Hero Image Stack */
.hero-image-stack {
  position: relative;
  height: 600px;
}

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

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

.hero-img-main {
  width: 380px;
  height: 520px;
  right: 0;
  top: 0;
  z-index: 2;
}

.hero-img-accent {
  width: 260px;
  height: 340px;
  left: 0;
  bottom: 0;
  z-index: 1;
  border: 4px solid var(--cream);
}

.hero-accent-shape {
  position: absolute;
  width: 120px;
  height: 120px;
  background: var(--coral);
  border-radius: 50%;
  bottom: 60px;
  left: 180px;
  z-index: 0;
  opacity: 0.15;
}

/* Hero Scroll */
.hero-scroll {
  position: absolute;
  bottom: var(--space-xl);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 1;
}

.hero-scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-400);
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gray-400), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.6); }
}

/* --- Services Section --- */
.services {
  padding: var(--space-3xl) 0;
  background: var(--white);
}

.services-header {
  max-width: 640px;
  margin-bottom: var(--space-2xl);
}

.services-header .section-desc {
  font-size: 1.05rem;
  color: var(--gray-500);
  line-height: 1.8;
  font-weight: 300;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.service-card {
  padding: var(--space-xl);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  transition: all var(--transition-med);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-med);
}

.service-card:hover {
  border-color: var(--coral);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(28, 28, 30, 0.08);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gray-200);
  margin-bottom: var(--space-md);
  line-height: 1;
}

.service-card:hover .service-card-number {
  color: var(--coral-pale);
}

.service-card-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-md);
  color: var(--coral);
  transition: all var(--transition-fast);
}

.service-card:hover .service-card-icon {
  background: var(--coral);
  border-color: var(--coral);
  color: var(--white);
}

.service-card-title {
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
  color: var(--charcoal);
}

.service-card-desc {
  font-size: 0.92rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: var(--space-md);
  font-weight: 300;
}

.service-card-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.service-card-list li {
  font-size: 0.82rem;
  color: var(--gray-600);
  padding-left: 1rem;
  position: relative;
}

.service-card-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 4px;
  height: 1px;
  background: var(--coral);
}

/* --- About Section --- */
.about {
  padding: var(--space-3xl) 0;
  background: var(--cream);
  overflow: hidden;
}

.about-layout {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.about-images {
  position: relative;
  height: 700px;
}

.about-img-main {
  width: 100%;
  height: 600px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

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

.about-img-float {
  position: absolute;
  bottom: 0;
  right: -40px;
  width: 280px;
  height: 200px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 6px solid var(--cream);
  z-index: 2;
}

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

.about-accent-box {
  position: absolute;
  top: var(--space-lg);
  right: -20px;
  background: var(--coral);
  color: var(--white);
  padding: 1.2rem 1.5rem;
  border-radius: var(--radius-sm);
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.about-accent-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-accent-line {
  width: 30px;
  height: 2px;
  background: rgba(255, 255, 255, 0.5);
}

.about-content {
  padding: var(--space-lg) 0;
}

.about-divider {
  width: 60px;
  height: 1px;
  background: var(--coral);
  margin-bottom: var(--space-lg);
}

.about-text {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--gray-600);
  margin-bottom: var(--space-md);
  font-weight: 300;
}

.about-values {
  margin-top: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.about-value {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.92rem;
  color: var(--charcoal);
}

.about-value-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  color: var(--coral);
  flex-shrink: 0;
}

/* --- Gallery Section --- */
.gallery {
  padding: var(--space-3xl) 0;
  background: var(--white);
}

.gallery-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto;
  gap: var(--space-md);
}

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

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28, 28, 30, 0.6), transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: var(--space-md);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

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

.gallery-item-overlay span {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--white);
  font-style: italic;
}

.gallery-item-wide {
  grid-column: span 8;
  height: 320px;
}

.gallery-item:not(.gallery-item-wide) {
  grid-column: span 4;
  height: 320px;
}

/* --- CTA Section --- */
.cta {
  padding: var(--space-3xl) 0;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(232, 115, 90, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(232, 115, 90, 0.08) 0%, transparent 40%);
  pointer-events: none;
}

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

.cta-content .section-title {
  margin-bottom: var(--space-md);
}

.cta-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--gray-400);
  margin-bottom: var(--space-xl);
  font-weight: 300;
}

.cta-actions {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Contact Section --- */
.contact {
  padding: var(--space-3xl) 0;
  background: var(--cream);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

.contact-divider {
  width: 60px;
  height: 1px;
  background: var(--coral);
  margin-bottom: var(--space-lg);
}

.contact-desc {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--gray-500);
  margin-bottom: var(--space-xl);
  font-weight: 300;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-detail {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  color: var(--coral);
  flex-shrink: 0;
}

.contact-detail-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 0.2rem;
}

.contact-detail-value {
  display: block;
  font-size: 0.95rem;
  color: var(--charcoal);
  line-height: 1.6;
}

.contact-detail-value a {
  color: var(--charcoal);
  transition: color var(--transition-fast);
}

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

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-500);
}

.form-input {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--charcoal);
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  outline: none;
  transition: all var(--transition-fast);
  width: 100%;
}

.form-input:focus {
  border-color: var(--coral);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(232, 115, 90, 0.1);
}

.form-input::placeholder {
  color: var(--gray-400);
}

.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='%23787870' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

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

.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-2xl) var(--space-lg);
  gap: var(--space-md);
}

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

.form-success-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--coral);
  border-radius: 50%;
  color: var(--coral);
}

.form-success-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--charcoal);
}

.form-success p {
  font-size: 0.95rem;
  color: var(--gray-500);
  line-height: 1.7;
  font-weight: 300;
}

/* --- Map Section --- */
.map-section {
  border-top: 1px solid var(--gray-200);
}

.map-container {
  filter: grayscale(0.3) contrast(1.05);
}

/* --- Footer --- */
.footer {
  background: var(--charcoal);
  color: var(--white);
  padding: var(--space-2xl) 0 var(--space-lg);
}

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

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-logo-mark {
  font-size: 1.5rem;
  color: var(--coral);
}

.footer-logo-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
}

.footer-tagline {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.7;
  font-weight: 300;
  max-width: 280px;
}

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

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: var(--space-md);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-col a {
  font-size: 0.88rem;
  color: var(--gray-400);
  transition: color var(--transition-fast);
  font-weight: 300;
}

.footer-col a:hover {
  color: var(--coral-light);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-lg);
  font-size: 0.78rem;
  color: var(--gray-600);
  font-weight: 300;
}

/* --- Scroll Reveal (progressive enhancement) --- */
@media (prefers-reduced-motion: no-preference) {
  [data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

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

/* --- Responsive --- */
@media (max-width: 1024px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .hero-right {
    display: none;
  }

  .hero-headline {
    font-size: clamp(2rem, 6vw, 3.2rem);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .about-images {
    height: 480px;
  }

  .about-img-float {
    right: 0;
  }

  .gallery-item-wide {
    grid-column: span 12;
  }

  .gallery-item:not(.gallery-item-wide) {
    grid-column: span 6;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
}

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

  .nav-toggle {
    display: flex;
  }

  .hero {
    padding: 100px var(--space-md) var(--space-xl);
    min-height: auto;
  }

  .hero-headline {
    font-size: clamp(1.8rem, 8vw, 2.6rem);
  }

  .hero-sub {
    font-size: 0.95rem;
  }

  .hero-actions {
    flex-direction: column;
  }

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

  .hero-scroll {
    display: none;
  }

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

  .service-card {
    padding: var(--space-lg);
  }

  .gallery-item-wide,
  .gallery-item:not(.gallery-item-wide) {
    grid-column: span 12;
    height: 240px;
  }

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

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

  .footer-bottom {
    flex-direction: column;
    gap: 0.4rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-md);
  }

  .services,
  .about,
  .gallery,
  .cta,
  .contact {
    padding: var(--space-2xl) 0;
  }

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