/* =============================================
   CSS CUSTOM PROPERTIES
============================================= */
:root {
  --off-white: #FAF8F5;
  --white: #FFFFFF;
  --terracotta: #D35400;
  --terracotta-rgb: 211, 84, 0;
  --sage: #8A9A86;
  --charcoal: #2C3E50;
  --charcoal-light: #4a5f72;
  --border: rgba(44,62,80,0.1);
  --header-h: 68px;
}

/* =============================================
   RESET & BASE
============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: 'Inter', 'Outfit', sans-serif;
  background: var(--off-white);
  color: var(--charcoal);
  line-height: 1.7;
  overflow-x: hidden;
}

@media (hover: hover) { body { cursor: none; } }

a { color: inherit; text-decoration: none; }
img, video, iframe { display: block; max-width: 100%; }
ul { list-style: none; }

/* =============================================
   CUSTOM CURSOR
============================================= */
#custom-cursor {
  position: fixed;
  top: 0; left: 0;
  width: 40px; height: 40px;
  border: 1.5px solid var(--terracotta);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  will-change: transform;
  transition: width 0.3s ease, height 0.3s ease, background 0.3s ease, border-color 0.3s ease;
  display: flex; align-items: center; justify-content: center;
}

#custom-cursor.cursor-dot {
  width: 10px; height: 10px;
  background: var(--terracotta);
  border: none;
}

#custom-cursor.cursor-expand {
  width: 80px; height: 80px;
  background: rgba(var(--terracotta-rgb), 0.08);
}

#cursor-text {
  position: fixed;
  top: 0; left: 0;
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  pointer-events: none;
  z-index: 100000;
  transform: translate(-50%, -50%);
  will-change: transform;
  opacity: 0;
  transition: opacity 0.2s ease;
}

#cursor-text.visible { opacity: 1; }

@media (hover: none) {
  #custom-cursor, #cursor-text { display: none; }
}

/* =============================================
   HEADER
============================================= */
#main-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 1000;
  background: rgba(250,248,245,0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center;
  transform: translateY(0);
  transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
}

#main-header.hidden { transform: translateY(-100%); }

.header-container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 72px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-logo {
  height: 34px;
  width: auto;
  display: block;
}

.brand-logotext {
  height: 20px;
  width: auto;
  display: block;
}

.brand-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--charcoal);
  letter-spacing: 0.02em;
}

.brand-subtext {
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--charcoal);
  position: relative;
  padding-bottom: 2px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 100%; height: 1.5px;
  background: var(--terracotta);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.25,0.46,0.45,0.94);
}

.nav-link:hover::after { transform: scaleX(1); }
.nav-link.active::after { transform: scaleX(1); }

/* Buttons */
.magnetic-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  padding: 11px 26px;
  border-radius: 100px;
  cursor: none;
  border: none;
  transition: box-shadow 0.3s ease;
  text-decoration: none;
  will-change: transform;
}

.btn-primary {
  background: var(--terracotta);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(var(--terracotta-rgb), 0.32);
}

.btn-primary:hover { box-shadow: 0 6px 28px rgba(var(--terracotta-rgb), 0.5); }

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.65);
}

.btn-secondary:hover { background: rgba(255,255,255,0.1); }

/* Mobile hamburger */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: none;
  padding: 4px;
}

.mobile-menu-btn span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--charcoal);
  transform-origin: center;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.mobile-menu-btn.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.mobile-menu-btn.open span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile overlay */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: var(--charcoal);
  z-index: 998;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.mobile-overlay.open { opacity: 1; pointer-events: all; }

.mobile-overlay .nav-link {
  color: var(--white);
  font-size: 1.6rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
}

@media (max-width: 900px) { .main-nav { display: none; } .mobile-menu-btn { display: flex; } }
@media (max-width: 600px) {
  .brand-subtext { display: none; }
  .brand-logo { height: 26px !important; width: auto !important; }
  .brand-logotext { height: 15px !important; width: auto !important; }
  .brand { gap: 6px !important; }
  .header-container { padding: 0 16px !important; gap: 10px !important; }
  
  /* Landing page fixes so buttons are visible */
  .hero-content h1 { font-size: 2.1rem !important; margin-bottom: 12px !important; line-height: 1.1 !important; }
  .hero-subtitle { font-size: 0.9rem !important; margin-bottom: 20px !important; line-height: 1.5 !important; }
  .hero-content { padding-top: calc(var(--header-h) + 10px) !important; }
  .hero-section { min-height: 500px !important; }
  .hero-ctas { display: none !important; }
}

/* =============================================
   SCROLL REVEAL
============================================= */
.reveal-text .reveal-wrapper {
  display: block;
  overflow: hidden;
}

.reveal-text .reveal-wrapper > * ,
.reveal-text .reveal-wrapper {
  /* fallback: visible by default, JS enhances */
}

.reveal-line {
  display: block;
  transform: translateY(110%);
  transition: transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

.revealed .reveal-line { transform: translateY(0); }

.sr { opacity: 0; transform: translateY(28px); }
.sr.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16,1,0.3,1);
}

/* =============================================
   HERO
============================================= */
.hero-section {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #1a2535 0%, #2c3e50 60%, #3d1f0a 100%);
}

.video-wrapper {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.desktop-video { display: block; }
.mobile-video  { display: none;  }

@media (max-width: 768px) {
  .desktop-video { display: none;  }
  .mobile-video  { display: block; }
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(44,62,80,0.78) 0%, rgba(44,62,80,0.42) 55%, rgba(211,84,0,0.18) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: var(--header-h) clamp(24px,5vw,72px) 0;
}

.hero-content h1 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--white);
  max-width: 820px;
  margin-bottom: 28px;
}

.hero-subtitle {
  font-weight: 300;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(255,255,255,0.76);
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 44px;
}

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

.hero-ctas .magnetic-btn {
  font-size: 0.9375rem;
  padding: 14px 34px;
}

/* Scroll indicator */
.scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  animation: hintFade 0.8s ease 2s both;
}

.scroll-hint span {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
}

.scroll-hint-arrow {
  width: 18px; height: 18px;
  border-right: 1.5px solid rgba(255,255,255,0.45);
  border-bottom: 1.5px solid rgba(255,255,255,0.45);
  transform: rotate(45deg);
  animation: arrowBounce 1.6s ease-in-out infinite;
}

@keyframes arrowBounce {
  0%,100% { transform: rotate(45deg) translateY(0); opacity: 0.45; }
  50%      { transform: rotate(45deg) translateY(5px); opacity: 0.9; }
}

@keyframes hintFade { from { opacity:0; transform: translateX(-50%) translateY(10px); } to { opacity:1; transform: translateX(-50%) translateY(0); } }

/* =============================================
   MARQUEE
============================================= */
.marquee-wrapper {
  width: 100%;
  height: 76px;
  overflow: hidden;
  background: var(--off-white);
  border-top: 1px solid rgba(44,62,80,0.07);
  border-bottom: 1px solid rgba(44,62,80,0.07);
  display: flex;
  align-items: center;
}

.marquee-content {
  display: flex;
  white-space: nowrap;
  animation: marqueeRun 30s linear infinite;
  will-change: transform;
}

.marquee-content:hover { animation-play-state: paused; }

.marquee-content span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(44,62,80,0.32);
  padding-right: 0;
}

@keyframes marqueeRun {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-33.333%); }
}

/* =============================================
   ABOUT
============================================= */
.about-section {
  background: var(--white);
  padding: clamp(80px, 10vw, 130px) clamp(24px,5vw,72px);
}

.about-container {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(48px, 7vw, 100px);
  align-items: center;
}

/* Arch image */
.arch-mask {
  position: relative;
  border-radius: 52% 52% 0 0 / 44% 44% 0 0;
  overflow: hidden;
  aspect-ratio: 3/4;
  max-width: 420px;
  width: 100%;
  clip-path: inset(0 0 0 0 round 52% 52% 0 0 / 44% 44% 0 0);
  will-change: transform;
  cursor: none;
}

.arch-mask::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(44,62,80,0.35) 100%);
  pointer-events: none;
}

.parallax-img {
  width: 100%;
  height: 115%;
  object-fit: cover;
  object-position: center top;
  will-change: transform;
  display: block;
}

.about-text-col {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.about-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
}

.editorial-text {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
  line-height: 1.55;
  color: var(--charcoal);
}

.about-body-copy {
  font-size: 1rem;
  color: var(--charcoal-light);
  line-height: 1.8;
}

.pillar-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pillar-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border: 1px solid var(--sage);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: 0.03em;
}

@media (max-width: 880px) {
  .about-container { grid-template-columns: 1fr; gap: 48px; }
  .arch-mask { max-width: 300px; margin: 0 auto; }
}

/* =============================================
   SERVICES
============================================= */
.services-section {
  background: var(--off-white);
  padding: clamp(80px,10vw,130px) clamp(24px,5vw,72px);
}

.section-header {
  max-width: 1320px;
  margin: 0 auto 56px;
}

.section-header h2 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  line-height: 1.1;
  color: var(--charcoal);
  letter-spacing: -0.01em;
}

.section-label-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  display: block;
  margin-bottom: 14px;
}

.services-matrix {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  gap: 1px;
  background: var(--border);
}

.service-card {
  background: var(--white);
  padding: clamp(28px, 3vw, 44px);
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: flex 0.5s cubic-bezier(0.25,0.46,0.45,0.94), background 0.3s ease;
  position: relative;
  overflow: hidden;
  cursor: none;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--terracotta);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
}

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

.service-card:hover,
.service-card.active {
  flex: 1.85;
  background: rgba(var(--terracotta-rgb), 0.025);
}

.service-card.shrink { flex: 0.75; }

.service-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(var(--terracotta-rgb), 0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.service-card h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--charcoal);
  line-height: 1.3;
}

.service-details {
  font-size: 0.875rem;
  color: var(--charcoal-light);
  line-height: 1.65;
  flex: 1;
}

.service-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--terracotta);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.service-card:hover .service-cta,
.service-card.active .service-cta { opacity: 1; transform: translateY(0); }

@media (max-width: 880px) {
  .services-matrix { display: grid; grid-template-columns: 1fr 1fr; background: transparent; gap: 16px; }
  .service-card { border: 1px solid var(--border); border-radius: 16px; flex: 1 !important; }
}

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

/* =============================================
   STUDIO BENTO GRID
============================================= */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 16px;
}
@media (max-width: 900px) {
  .bento-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: auto; }
  .bento-1 { grid-column: 1 / 3 !important; grid-row: auto !important; height: 340px; }
  .bento-2 { grid-column: 1 / 3 !important; grid-row: auto !important; height: 440px; }
  .bento-3 { grid-column: 1 / 2 !important; grid-row: auto !important; height: 260px; }
  .bento-4 { grid-column: 2 / 3 !important; grid-row: auto !important; height: 260px; }
  .bento-5 { grid-column: 1 / 3 !important; grid-row: auto !important; height: 320px; }
  .bento-6 { grid-column: 1 / 3 !important; grid-row: auto !important; height: 400px; }
}
@media (max-width: 600px) {
  .bento-grid { display: flex; flex-direction: column; gap: 16px; }
  .bento-item { width: 100%; height: 300px !important; }
  .bento-2 { height: 400px !important; }
  .bento-6 { height: 400px !important; }
}

.bento-item {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: var(--off-white);
  box-shadow: 0 4px 20px rgba(44,62,80,0.05);
  cursor: none;
}
.bento-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94), filter 0.5s ease;
}
.bento-item:hover .bento-img { transform: scale(1.06); }

.bento-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44,62,80,0.85) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.5s ease;
  display: flex;
  align-items: flex-end;
  padding: 24px;
}
.bento-item:hover .bento-overlay { opacity: 1; }

.bento-title {
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  transform: translateY(10px);
  transition: transform 0.4s ease;
}
.bento-item:hover .bento-title { transform: translateY(0); }
.bento-item:hover .bento-desc { transform: translateY(0) !important; }

.bento-1 { grid-column: 1 / 3; grid-row: 1 / 3; }
.bento-2 { grid-column: 3 / 5; grid-row: 1 / 4; }
.bento-3 { grid-column: 1 / 2; grid-row: 3 / 4; }
.bento-4 { grid-column: 2 / 3; grid-row: 3 / 4; }
.bento-5 { grid-column: 1 / 3; grid-row: 4 / 6; }
.bento-6 { grid-column: 3 / 5; grid-row: 4 / 6; }

/* =============================================
   HORIZONTAL SCROLL PRICING
============================================= */
.horizontal-scroll-section {
  height: 300vh;
  background: var(--white);
}

.horizontal-sticky-wrapper {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.horizontal-scroll-container {
  display: flex;
  gap: 32px;
  padding: 0 clamp(24px,5vw,72px);
  align-items: stretch;
  will-change: transform;
  transition: transform 0.12s linear;
}

/* Intro panel */
.horizontal-intro {
  min-width: clamp(300px, 34vw, 460px);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
  padding-right: 16px;
}

.horizontal-intro h2 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  line-height: 1.1;
  color: var(--charcoal);
  letter-spacing: -0.01em;
}

.horizontal-intro > p {
  font-size: 1rem;
  color: var(--charcoal-light);
  line-height: 1.7;
  max-width: 340px;
}

.amenities-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
}

.amenity {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--charcoal-light);
  font-weight: 500;
}

.tick {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(var(--terracotta-rgb), 0.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 0.6rem;
  color: var(--terracotta);
  font-weight: 700;
  position: relative;
}

.tick::after { content: '✓'; }

/* Pricing cards */
.pricing-card {
  min-width: clamp(280px, 32vw, 420px);
  flex-shrink: 0;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: clamp(28px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  cursor: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  align-self: center;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(44,62,80,0.1);
}

.master-card {
  background: var(--charcoal);
  border-color: var(--charcoal);
  transform: scale(1.04);
}

.master-card:hover { transform: scale(1.04) translateY(-6px); }

.badge {
  display: inline-block;
  background: var(--terracotta);
  color: var(--white);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 4px;
}

.package-time {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  display: block;
}

.master-card .package-time { color: rgba(255,255,255,0.55); }

.package-price {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  color: var(--charcoal);
  line-height: 1;
}

.master-card .package-price { color: var(--white); }

.package-desc {
  font-size: 0.875rem;
  font-style: italic;
  color: var(--charcoal-light);
  line-height: 1.55;
  flex: 1;
}

.master-card .package-desc { color: rgba(255,255,255,0.65); }

.book-btn {
  display: block;
  text-align: center;
  padding: 12px 24px;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  background: var(--terracotta);
  color: var(--white);
  transition: box-shadow 0.3s ease;
}

.book-btn:hover { box-shadow: 0 6px 24px rgba(var(--terracotta-rgb), 0.45); }

/* Horizontal scroll progress */
.scroll-progress {
  position: absolute;
  bottom: 40px;
  left: clamp(24px,5vw,72px);
  right: clamp(24px,5vw,72px);
  height: 2px;
  background: var(--border);
  border-radius: 100px;
  overflow: hidden;
}

.scroll-progress-fill {
  height: 100%;
  background: var(--terracotta);
  width: 0%;
  border-radius: 100px;
  transition: width 0.1s linear;
}

/* Mobile fallback */
@media (max-width: 768px) {
  .horizontal-scroll-section { height: auto; }
  .horizontal-sticky-wrapper { position: static; height: auto; padding: clamp(60px,10vw,100px) 0; display: block; }
  .horizontal-scroll-container {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0 clamp(24px,5vw,40px);
    overflow: visible;
  }
  .horizontal-intro { min-width: auto; padding-right: 0; margin-bottom: 40px; }
  .pricing-card { min-width: auto; align-self: auto; }
  .pricing-card + .pricing-card { margin-top: 20px; }
  .master-card { transform: none; }
  .scroll-progress { display: none; }
}

/* =============================================
   CONTACT / FOOTER
============================================= */
.main-footer {
  background: var(--off-white);
  border-top: 1px solid var(--border);
  padding: clamp(80px,10vw,130px) clamp(24px,5vw,72px) 0;
}

.footer-matrix {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px,7vw,100px);
}

/* Form */
.contact-form-col h2 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 40px;
}

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

.input-group { position: relative; }

.input-group input,
.input-group textarea,
.input-group select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(44,62,80,0.22);
  padding: 12px 0 10px;
  font-family: inherit;
  font-size: 0.9375rem;
  color: var(--charcoal);
  outline: none;
  transition: border-color 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
}

.input-group textarea { resize: vertical; min-height: 90px; }

.input-group input:focus,
.input-group textarea:focus,
.input-group select:focus { border-color: var(--terracotta); }

.input-group label {
  position: absolute;
  top: 12px; left: 0;
  font-size: 0.875rem;
  color: rgba(44,62,80,0.45);
  font-weight: 400;
  pointer-events: none;
  transition: top 0.25s ease, font-size 0.25s ease, color 0.25s ease;
}

.input-group:focus-within label,
.input-group.filled label {
  top: -10px;
  font-size: 0.68rem;
  color: var(--terracotta);
  letter-spacing: 0.08em;
  font-weight: 600;
  text-transform: uppercase;
}

.submit-btn {
  width: 100%;
  justify-content: center;
  padding: 15px 32px;
  font-size: 0.9375rem;
}

/* Contact info */
.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.footer-brand-block { display: flex; flex-direction: column; gap: 12px; }
.footer-brand-logo-wrap { display: flex; align-items: center; gap: 10px; }
.footer-brand-logo { height: 38px; width: auto; display: block; }
.footer-brand-text-img { height: 20px; width: auto; display: block; }
.footer-tagline { font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sage); font-weight: 500; margin-top: 0; }

.info-block h3 {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 8px;
}

.info-block p { font-size: 0.9375rem; color: var(--charcoal-light); line-height: 1.6; }

.map-container {
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 16/9;
  border: 1px solid var(--border);
  background: var(--off-white);
}

.map-container iframe { width: 100%; height: 100%; border: 0; }

.info-links { display: flex; flex-direction: column; gap: 12px; }

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 100px;
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: fit-content;
}

.social-link:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(220,39,67,0.4); }

.hotline {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: 0.04em;
  transition: color 0.2s ease;
  display: inline-block;
}

.hotline:hover { color: var(--terracotta); }

/* Footer bottom */
.footer-bottom {
  max-width: 1320px;
  margin: 56px auto 0;
  padding: 24px 0 32px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p { font-size: 0.8125rem; color: rgba(44,62,80,0.5); }

.footer-tagline-bottom { font-size: 0.8125rem; color: rgba(44,62,80,0.5); font-style: italic; }

@media (max-width: 880px) { .footer-matrix { grid-template-columns: 1fr; } }

/* =============================================
   MISC
============================================= */
::selection { background: rgba(var(--terracotta-rgb), 0.18); color: var(--charcoal); }
:focus-visible { outline: 2px solid var(--terracotta); outline-offset: 3px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal-line { transform: none !important; }
  .sr { opacity: 1 !important; transform: none !important; }
}

/* =============================================
   ABOUT ARCH — overlay pills
============================================= */
.arch-mask-wrapper { position: relative; z-index: 1; }
.creative-pill {
  position: absolute;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: 100px;
  padding: 12px 24px 12px 12px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 16px 32px rgba(44,62,80,0.12);
  z-index: 10;
  transform: translateY(0);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.creative-pill:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(44,62,80,0.18);
}
.pill-left {
  top: 15%;
  left: -20%;
  animation: floatPill 5s ease-in-out infinite;
}
.pill-right {
  bottom: 15%;
  right: -20%;
  animation: floatPill 6s ease-in-out infinite reverse;
}
.cp-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--terracotta) 0%, #f09433 100%);
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 6px 16px rgba(211,84,0,0.3);
  flex-shrink: 0;
}
.cp-text { display: flex; flex-direction: column; line-height: 1.2; }
.cp-title { font-weight: 800; font-family: 'Outfit', sans-serif; font-size: 1.1rem; color: var(--charcoal); }
.cp-sub { font-size: 0.75rem; color: var(--charcoal-light); font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; margin-top: 2px; }

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

@media (max-width: 900px) {
  .pill-left { left: -5%; }
  .pill-right { right: -5%; }
}
@media (max-width: 480px) {
  .pill-left { top: 10%; left: -2%; right: auto; padding: 8px 16px 8px 8px; }
  .pill-right { bottom: 10%; right: -2%; left: auto; padding: 8px 16px 8px 8px; }
  .cp-icon { width: 40px; height: 40px; font-size: 1rem; }
  .cp-title { font-size: 0.95rem; }
  .cp-sub { font-size: 0.65rem; }
}

/* Mobile gallery grid fix */
@media (max-width: 768px) {
  .footer-bottom { flex-direction: column; text-align: center; }
}
