/* ============================================
   SURCAN — Global Styles · Premium Edition
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600&display=swap');

/* ── Variables ── */
:root {
  --black:        #0F0F0F;
  --dark:         #1A1A1A;
  --mid:          #262626;
  --gray:         #6B6562;
  --light-gray:   #8A847E;
  --text-muted:   #7a7570;
  --beige:        #C4965A;
  --beige-light:  #E5CEAD;
  --beige-pale:   #F4EEE4;
  --cream:        #F8F4EE;
  --white:        #FFFFFF;

  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-body:    'DM Sans', system-ui, sans-serif;

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft:   cubic-bezier(0.4, 0, 0.2, 1);

  --nav-h: 68px;
  --section-pad: clamp(52px, 6vw, 80px);
  --container: 1140px;
  --radius: 2px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
  font-family: var(--ff-body);
  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ── Layout ── */
.container {
  width: min(var(--container), 100% - clamp(40px, 8vw, 140px));
  margin-inline: auto;
}
.container--narrow { width: min(720px, 100% - clamp(40px, 8vw, 140px)); margin-inline: auto; }

/* ── Reveal animations ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
  will-change: opacity, transform;
}
.reveal.visible { opacity: 1; transform: none; }

.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
.reveal-left.visible { opacity: 1; transform: none; }

.reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
.reveal-right.visible { opacity: 1; transform: none; }

.delay-1 { transition-delay: 0.10s; }
.delay-2 { transition-delay: 0.22s; }
.delay-3 { transition-delay: 0.34s; }
.delay-4 { transition-delay: 0.46s; }
.delay-5 { transition-delay: 0.58s; }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--ff-display);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.8rem, 6.5vw, 5.6rem); }
h2 { font-size: clamp(2rem, 4.2vw, 3.4rem); }
h3 { font-size: clamp(1.35rem, 2.5vw, 2rem); }
h4 { font-size: clamp(1.05rem, 1.8vw, 1.3rem); }

p { font-size: clamp(1rem, 1.4vw, 1.05rem); line-height: 1.7; color: var(--gray); }

.label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--beige);
  font-family: var(--ff-body);
}
.label::before {
  content: '';
  display: block;
  width: 24px; height: 1px;
  background: currentColor;
  flex-shrink: 0;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 30px;
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.4s var(--ease-out);
  position: relative;
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

.btn-primary {
  background: var(--beige);
  color: var(--dark);
}
.btn-primary:hover {
  background: #b08347;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(196,150,90,0.30);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.35);
}
.btn-outline:hover {
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.06);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--dark);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(0,0,0,0.18);
}

.btn-ghost {
  background: transparent;
  color: var(--dark);
  border: 1px solid rgba(0,0,0,0.15);
}
.btn-ghost:hover {
  border-color: var(--beige);
  color: var(--beige);
  transform: translateY(-2px);
}

.btn:focus-visible,
.faq-question:focus-visible {
  outline: 2px solid var(--beige);
  outline-offset: 3px;
  border-radius: var(--radius);
}

/* ── HEADER / NAV ── */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition:
    background 0.6s var(--ease-soft),
    box-shadow 0.6s var(--ease-soft),
    backdrop-filter 0.6s;
}
#site-header.scrolled {
  background: rgba(15,15,15,0.94);
  backdrop-filter: blur(24px) saturate(1.6);
  -webkit-backdrop-filter: blur(24px) saturate(1.6);
  box-shadow: 0 1px 0 rgba(255,255,255,0.04);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 clamp(0px, 1.5vw, 20px);
}

/* Logo */
.nav-logo { display: flex; align-items: center; }
.nav-logo-text {
  font-family: var(--ff-display);
  font-size: 1.55rem;
  font-weight: 500;
  letter-spacing: 0.20em;
  color: var(--white);
  line-height: 1;
}
.nav-logo-text span { color: var(--beige); }

/* Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 44px;
}
.nav-links a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.60);
  transition: color 0.3s;
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--beige);
  transition: width 0.35s var(--ease-out);
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta { display: flex; align-items: center; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 36px;
  height: 36px;
  padding: 4px;
}
.hamburger span {
  display: block;
  height: 1px;
  background: var(--white);
  border-radius: 1px;
  transition: transform 0.45s var(--ease-out), opacity 0.3s, width 0.35s;
  transform-origin: center;
}
.hamburger span:nth-child(2) { width: 65%; margin-left: auto; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav overlay */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transform: translateX(100%);
  transition: transform 0.55s var(--ease-out);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a.nav-link-mobile {
  font-family: var(--ff-display);
  font-size: clamp(2.4rem, 8vw, 3.2rem);
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.06em;
  transition: color 0.3s;
  padding: 8px 0;
  line-height: 1.2;
}
.mobile-nav a.nav-link-mobile:hover { color: var(--beige); }
.mobile-nav-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  margin: 8px 0;
}
.mobile-nav-bottom {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.mobile-nav-social {
  display: flex;
  gap: 20px;
}
.mobile-nav-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.45);
  transition: all 0.3s;
}
.mobile-nav-social a:hover {
  border-color: var(--beige);
  color: var(--beige);
}
.mobile-nav-social a svg { width: 13px; height: 13px; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(64px, 8vw, 110px);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
/* ── Hero video ── */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 1;
  animation: heroVideoZoom 24s ease-out forwards;
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}
@keyframes heroVideoZoom {
  from { transform: scale(1.06); }
  to   { transform: scale(1.0);  }
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(ellipse at center, rgba(10,8,6,0.28) 0%, rgba(10,8,6,0.62) 100%),
    linear-gradient(to bottom, rgba(10,8,6,0.18) 0%, transparent 35%, rgba(10,8,6,0.80) 100%);
}

/* Film grain */
.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0.042;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='256' height='256'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='256' height='256' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
  animation: grainShift 0.55s steps(2) infinite;
}
@keyframes grainShift {
  0%   { background-position:   0px   0px; }
  25%  { background-position:  32px  18px; }
  50%  { background-position: -20px  44px; }
  75%  { background-position:  44px -28px; }
  100% { background-position: -28px -18px; }
}

.hero-bg-fallback {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(135deg, #1c1712 0%, #2a2018 50%, #1c1712 100%);
}

.hero-content {
  position: relative;
  z-index: 4;
  max-width: 920px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 1s var(--ease-out) 0.1s, transform 1s var(--ease-out) 0.1s;
}
.hero-eyebrow.visible { opacity: 1; transform: none; }
.hero-eyebrow-line {
  width: 36px; height: 1px;
  background: var(--beige);
}
.hero-eyebrow-text {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--beige);
}

.hero-title {
  font-size: clamp(3.0rem, 7.2vw, 7rem);
  color: var(--white);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 32px;
  letter-spacing: -0.025em;
  text-wrap: balance;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1.1s var(--ease-out) 0.22s, transform 1.1s var(--ease-out) 0.22s;
}
.hero-title.visible { opacity: 1; transform: none; }
.hero-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--beige-light);
}

.hero-subtitle {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: rgba(255,255,255,0.70);
  line-height: 1.72;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: 52px;
  letter-spacing: 0.01em;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s var(--ease-out) 0.38s, transform 1s var(--ease-out) 0.38s;
}
.hero-subtitle.visible { opacity: 1; transform: none; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.9s var(--ease-out) 0.54s, transform 0.9s var(--ease-out) 0.54s;
}
.hero-actions.visible { opacity: 1; transform: none; }

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 40px; right: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 1;
}
.hero-scroll-text {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.hero-scroll-line {
  width: 1px;
  height: 56px;
  position: relative;
  overflow: hidden;
  background: rgba(255,255,255,0.12);
}
.hero-scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--beige);
  animation: scrollPulse 2.4s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%   { top: -100%; opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

/* ── MARQUEE ── */
.marquee-section {
  background: var(--black);
  padding: 16px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.marquee-track {
  display: flex;
  gap: 0;
  animation: marqueeScroll 28s linear infinite;
  width: max-content;
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  padding: 0 40px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.22);
  position: relative;
}
.marquee-item::after {
  content: '';
  position: absolute;
  right: 0;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--beige);
  opacity: 0.4;
}
@keyframes marqueeScroll {
  to { transform: translateX(-50%); }
}

/* ── PHILOSOPHY ── */
.philosophy {
  padding: var(--section-pad) 0;
  background: var(--white);
}
.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(50px, 8vw, 110px);
  align-items: center;
}

/* Text-only variant (no image) */
.philosophy--text-only {
  background: var(--cream);
  padding-bottom: 52px;
}
.philosophy--text-only .philosophy-layout {
  display: flex;
  align-items: center;
}
.philosophy--text-only .philosophy-text-wrap {
  max-width: 780px;
}
.philosophy-figure {
  flex: 0 0 auto;
  width: clamp(220px, 26vw, 300px);
  margin-left: auto;
  padding-right: 2rem;
}
.philosophy-figure img {
  width: 100%;
  height: auto;
  display: block;
  mix-blend-mode: multiply;
}
.philosophy--text-only .philosophy-text-wrap h2 {
  margin-bottom: 26px;
  color: var(--dark);
}
.philosophy--text-only .philosophy-text-wrap p {
  margin-bottom: 18px;
}
.philosophy-visual { position: relative; }
.philosophy-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}
.philosophy-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease-out);
}
.philosophy-img-wrap:hover .philosophy-img { transform: scale(1.03); }

.philosophy-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 118px; height: 118px;
  background: var(--beige);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 14px;
}
.philosophy-badge strong {
  font-family: var(--ff-display);
  font-size: 2.2rem;
  color: var(--white);
  line-height: 1;
  font-weight: 500;
}
.philosophy-badge span {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  margin-top: 4px;
  line-height: 1.4;
}

.philosophy-content .label { margin-bottom: 22px; }
.philosophy-content h2 { margin-bottom: 26px; color: var(--dark); }
.philosophy-content p { margin-bottom: 18px; }

/* ── SERVICES ── */
.services-section {
  padding: var(--section-pad) 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.services-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(196,150,90,0.08) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.services-section .container {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  width: 100%;
  padding: 0 2rem;
  margin-inline: auto;
}
.services-section .section-header .label {
  color: var(--beige);
}
.services-section .section-header h2 {
  color: var(--white);
}
.services-section .section-header p {
  color: rgba(255,255,255,0.48);
}
.section-header {
  margin-bottom: clamp(52px, 7vw, 88px);
}
.section-header.centered { text-align: center; }
.section-header.centered .label { justify-content: center; }
.section-header.centered p { max-width: 520px; margin-inline: auto; }
.section-header .label { margin-bottom: 18px; }
.section-header h2 { margin-bottom: 18px; color: var(--dark); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.services-grid--two-col {
  grid-template-columns: repeat(2, 1fr);
}
.services-grid.services-grid--four-col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  width: 100%;
}
@media (max-width: 900px) {
  .services-grid.services-grid--four-col { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .services-grid.services-grid--four-col {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 1rem;
  }
  .services-grid.services-grid--four-col .service-card {
    min-height: auto;
    padding: 2rem 1.5rem;
  }
  .services-grid.services-grid--four-col .service-card-img {
    width: 130px;
    height: 130px;
  }
  .services-grid.services-grid--four-col .service-card h3 {
    font-size: 1.3rem;
  }
  .services-grid.services-grid--four-col .service-card p {
    font-size: 1rem;
  }
}
.services-row-last {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: calc(66.66% + 10px);
  margin: 20px auto 0;
}
@media (max-width: 1024px) {
  .services-row-last { max-width: 100%; }
}
@media (max-width: 768px) {
  .services-grid--two-col { grid-template-columns: 1fr; }
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 380px;
  padding: 1.5rem 1rem;
  background: linear-gradient(135deg, #F4EEE4 0%, #FFFFFF 55%);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius);
  overflow: hidden;
  align-items: center;
  text-align: center;
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out);
}
.service-card-img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1rem;
  border: 2.5px solid var(--beige);
  flex-shrink: 0;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--beige);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 55px rgba(0,0,0,0.08);
}
.service-card:hover::after { transform: scaleX(1); }

.service-number {
  font-family: var(--ff-display);
  font-size: 4rem;
  font-weight: 300;
  color: var(--beige-light);
  line-height: 1;
  margin-bottom: 22px;
  letter-spacing: -0.03em;
  transition: color 0.3s;
}
.service-card:hover .service-number { color: var(--beige); }

.service-card h3 {
  font-family: var(--ff-display);
  font-size: 1.45rem;
  color: var(--dark);
  margin-bottom: 12px;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.2;
  text-align: center;
}
.service-card p {
  font-size: 0.87rem;
  color: var(--gray);
  margin-bottom: 18px;
  line-height: 1.75;
  text-align: center;
}
.service-card--featured {
  background: linear-gradient(160deg, #FBF2E2 0%, #FFFFFF 62%);
  border-color: rgba(196,150,90,0.55);
  box-shadow: 0 18px 48px rgba(196,150,90,0.16);
}
.service-card--featured::after { transform: scaleX(1); }
.service-card--featured:hover {
  box-shadow: 0 24px 60px rgba(196,150,90,0.24);
}
.service-card--featured h3 { color: var(--dark); }
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
  justify-content: center;
}
.service-tag {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--beige);
  background: rgba(196,150,90,0.09);
  padding: 4px 10px;
  border-radius: var(--radius);
}
.service-price {
  font-family: var(--ff-display);
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--dark);
  letter-spacing: -0.02em;
}
.service-price small {
  font-size: 0.72rem;
  font-family: var(--ff-body);
  font-weight: 400;
  color: var(--light-gray);
  letter-spacing: 0.02em;
}
.services-cta {
  text-align: center;
  margin-top: 52px;
}

/* Service card extras */
.card-badge {
  display: inline-block;
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--beige);
  background: rgba(196,150,90,0.10);
  padding: 4px 10px;
  border-radius: var(--radius);
  margin-bottom: 14px;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.71rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--beige);
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(0,0,0,0.05);
  transition: gap 0.3s var(--ease-out), color 0.25s;
}
.service-link:hover { gap: 11px; color: #b08347; }

/* ── PROCESS ── */
.process-section {
  padding: var(--section-pad) 0;
  background: var(--dark);
}
.process-section .section-header .label { color: var(--beige); }
.process-section .section-header h2 { color: var(--white); }
.process-section .section-header p { color: rgba(255,255,255,0.45); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255,255,255,0.05);
  margin-top: clamp(52px, 7vw, 88px);
}
.process-step {
  padding: 44px 28px 40px;
  border-right: 1px solid rgba(255,255,255,0.05);
  transition: background 0.35s;
  position: relative;
}
.process-step:last-child { border-right: none; }
.process-step:hover { background: rgba(255,255,255,0.03); }

.step-num {
  font-family: var(--ff-display);
  font-size: 4rem;
  font-weight: 300;
  color: rgba(196,150,90,0.16);
  line-height: 1;
  margin-bottom: 18px;
  letter-spacing: -0.03em;
  transition: color 0.35s;
}
.process-step:hover .step-num { color: rgba(196,150,90,0.4); }

.process-step h4 {
  font-family: var(--ff-body);
  font-size: 0.87rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}
.process-step p { font-size: 0.83rem; color: rgba(255,255,255,0.38); line-height: 1.75; }

/* ── TESTIMONIALS ── */
.testimonials-section {
  padding: var(--section-pad) 0;
  background: var(--white);
  overflow: hidden;
}

.testimonials-slider { overflow: hidden; margin-top: clamp(52px,7vw,88px); }
.testimonials-track {
  display: flex;
  gap: 20px;
  transition: transform 0.75s var(--ease-out);
  will-change: transform;
}
.testimonial-card {
  flex: 0 0 calc(33.33% - 14px);
  background: var(--cream);
  border-radius: var(--radius);
  padding: 40px 34px;
  border: 1px solid rgba(0,0,0,0.05);
  transition: transform 0.35s var(--ease-out);
}
.testimonial-card:hover { transform: translateY(-4px); }

.stars { display: flex; gap: 3px; margin-bottom: 18px; }
.stars span { color: var(--beige); font-size: 0.85rem; }

.testimonial-text {
  font-family: var(--ff-display);
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--mid);
  font-style: italic;
  font-weight: 300;
  margin-bottom: 28px;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--beige-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: 0.95rem;
  color: var(--beige);
  font-weight: 500;
  flex-shrink: 0;
}
.author-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.01em;
}
.author-dog { font-size: 0.75rem; color: var(--light-gray); margin-top: 2px; }

.slider-arrows {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}
.slider-btn {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  transition: all 0.3s;
}
.slider-btn:hover { background: var(--dark); color: var(--white); border-color: var(--dark); }
.slider-btn svg { width: 16px; height: 16px; }
.slider-controls {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.slider-dot {
  width: 6px; height: 6px;
  border-radius: 3px;
  background: var(--beige-light);
  cursor: pointer;
  transition: width 0.35s var(--ease-out), background 0.3s;
}
.slider-dot.active { width: 24px; background: var(--beige); }

/* ── GALLERY STRIP ── */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 360px;
  overflow: hidden;
}
.gallery-strip-item {
  overflow: hidden;
  position: relative;
}
.gallery-strip-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
  display: block;
}
.gallery-strip-item:hover img { transform: scale(1.05); }
.gallery-strip-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.22);
  transition: background 0.4s;
}
.gallery-strip-item:hover::after { background: rgba(0,0,0,0.08); }

/* ── FAQ ── */
.faq-section {
  padding: var(--section-pad) 0;
  background: var(--cream);
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(48px, 7vw, 110px);
  align-items: start;
}
.faq-intro .label { margin-bottom: 20px; }
.faq-intro h2 { margin-bottom: 22px; }
.faq-intro p { margin-bottom: 28px; }

.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid rgba(0,0,0,0.07); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark);
  cursor: pointer;
  gap: 20px;
  transition: color 0.25s;
  user-select: none;
  line-height: 1.5;
}
.faq-question:hover { color: var(--beige); }
.faq-icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.13);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.3s var(--ease-out);
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--gray);
  border-radius: 1px;
  transition: transform 0.35s var(--ease-out), opacity 0.3s, background 0.3s;
}
.faq-icon::before { width: 9px; height: 1.5px; }
.faq-icon::after  { width: 1.5px; height: 9px; }
.faq-item.open .faq-icon {
  border-color: var(--beige);
  background: var(--beige);
}
.faq-item.open .faq-icon::before { background: var(--white); }
.faq-item.open .faq-icon::after  { background: var(--white); opacity: 0; transform: rotate(90deg); }
.faq-item.open .faq-question { color: var(--beige); }

.faq-answer { overflow: hidden; max-height: 0; transition: max-height 0.55s var(--ease-out); }
.faq-answer-inner {
  padding-bottom: 20px;
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--gray);
}

/* ── CONTACT ── */
.contact-section {
  padding: var(--section-pad) 0;
  background: var(--white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(48px, 7vw, 88px);
  align-items: start;
}

/* Simple contact (no form) */
.contact-section--simple {
  background: var(--cream);
}
.contact-simple {
  display: grid;
  grid-template-columns: 1.4fr 1fr auto;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.contact-simple-text h2 { margin-bottom: 16px; }
.contact-simple-text p  { max-width: 420px; }
.contact-simple-details {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-simple-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
@media (max-width: 960px) {
  .contact-simple {
    grid-template-columns: 1fr 1fr;
  }
  .contact-simple-cta {
    grid-column: 1 / -1;
    flex-direction: row;
    flex-wrap: wrap;
  }
}
@media (max-width: 600px) {
  .contact-simple {
    grid-template-columns: 1fr;
  }
  .contact-simple-cta { flex-direction: column; }
  .contact-simple-cta .btn { width: 100%; justify-content: center; }
}
.contact-info .label { margin-bottom: 20px; }
.contact-info h2 { margin-bottom: 22px; }
.contact-info p { margin-bottom: 32px; }

.contact-details { display: flex; flex-direction: column; gap: 18px; margin-bottom: 36px; }
.contact-detail { display: flex; align-items: flex-start; gap: 14px; }
.contact-detail-icon {
  width: 42px; height: 42px;
  background: var(--cream);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(0,0,0,0.06);
}
.contact-detail-icon svg { width: 18px; height: 18px; color: var(--beige); }
.contact-detail-label {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--light-gray);
  margin-bottom: 3px;
}
.contact-detail-value { font-size: 0.92rem; font-weight: 500; color: var(--dark); }

.contact-form {
  background: var(--cream);
  padding: 44px 40px;
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,0.05);
}
.contact-form h3 { font-size: 1.5rem; margin-bottom: 6px; color: var(--dark); }
.contact-form > p { font-size: 0.83rem; margin-bottom: 28px; color: var(--light-gray); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.form-group label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--light-gray);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  border: 1.5px solid rgba(0,0,0,0.08);
  border-radius: var(--radius);
  font-family: var(--ff-body);
  font-size: 0.9rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color 0.25s, box-shadow 0.25s;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--beige);
  box-shadow: 0 0 0 3px rgba(196,150,90,0.10);
}
.form-group textarea { resize: vertical; min-height: 104px; }
.form-submit { width: 100%; justify-content: center; padding: 15px; margin-top: 4px; }
.form-note { font-size: 0.74rem; color: var(--light-gray); text-align: center; margin-top: 10px; line-height: 1.6; }
.form-note a { color: var(--beige); }

/* ── CTA BANNER ── */
.cta-banner {
  padding: clamp(80px, 10vw, 130px) 0;
  background: var(--dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(196,150,90,0.07) 0%, transparent 68%);
  pointer-events: none;
}
.cta-banner .label { justify-content: center; margin-bottom: 18px; }
.cta-banner h2 { color: var(--white); margin-bottom: 18px; max-width: 560px; margin-inline: auto; }
.cta-banner p { color: rgba(255,255,255,0.42); max-width: 440px; margin: 0 auto 40px; }
.cta-banner-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ── PAGE HERO (interior pages) ── */
.page-hero {
  padding-top: calc(var(--nav-h) + clamp(60px, 8vw, 100px));
  padding-bottom: clamp(60px, 8vw, 100px);
  background: var(--dark);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(196,150,90,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero .label { justify-content: center; margin-bottom: 18px; color: var(--beige); }
.page-hero h1 { color: var(--white); max-width: 680px; margin-inline: auto; margin-bottom: 18px; }
.page-hero p { color: rgba(255,255,255,0.48); max-width: 480px; margin-inline: auto; }

/* ── ABOUT PAGE ── */
.about-section { padding: var(--section-pad) 0; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(52px, 8vw, 120px);
  align-items: center;
}
.about-images { position: relative; }
.about-img-main {
  width: 83%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius);
  display: block;
}
/* Single image variant — full width, no space reserved for secondary */
.about-img-solo {
  width: 100%;
  aspect-ratio: 4/5;
}
.about-img-secondary {
  position: absolute;
  bottom: -40px; right: -10px;
  width: 52%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius);
  border: 5px solid var(--white);
  box-shadow: 0 20px 55px rgba(0,0,0,0.12);
}
.about-content { padding-right: 8px; }
.about-content .label { margin-bottom: 20px; }
.about-content h2 { margin-bottom: 22px; }
.about-content p { margin-bottom: 18px; }

/* ── CERTIFICATIONS ── */
.certifications {
  padding: var(--section-pad) 0;
  background: var(--cream);
}
.cert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: clamp(48px, 6vw, 72px);
}
.cert-card {
  background: linear-gradient(135deg, #F4EEE4 0%, #FFFFFF 55%);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  border: 0.5px solid rgba(196,150,90,0.15);
  position: relative;
  overflow: hidden;
}

.cert-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #C4965A, transparent);
}

.cert-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(196,150,90,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cert-icon svg {
  width: 34px;
  height: 34px;
}

.cert-card h4 {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--dark);
  margin: 0;
  line-height: 1.3;
}

.cert-card p {
  font-size: 0.95rem;
  color: var(--text-muted, #7a7570);
  line-height: 1.7;
  margin: 0;
}

/* ── Service price block (used in servicios.html detail cards) ── */
.service-price-block {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  padding: 18px 22px;
  background: var(--beige-pale);
  border-left: 3px solid var(--beige);
  border-radius: var(--radius);
}
.service-price-tag {
  font-family: var(--ff-display);
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--dark);
  letter-spacing: -0.03em;
  line-height: 1;
}
.service-price-note {
  font-size: 0.8rem;
  color: var(--light-gray);
  line-height: 1.5;
}

/* ── SERVICES PAGE ── */
.services-page-section { padding: var(--section-pad) 0; }
.service-detail-card {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(44px, 7vw, 88px);
  align-items: center;
  padding: clamp(56px, 8vw, 100px) 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.service-detail-card:last-child { border-bottom: none; }
.service-detail-card.reverse { direction: rtl; }
.service-detail-card.reverse > * { direction: ltr; }

/* Image container clips the overflow from cover */
.service-detail-card > div:first-child {
  overflow: hidden;
  border-radius: var(--radius);
}

.service-detail-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  object-position: center 20%;
  border-radius: var(--radius);
  display: block;
}

.service-detail-content .label { margin-bottom: 14px; }
.service-detail-content h2 { margin-bottom: 18px; }
.service-detail-content p { margin-bottom: 22px; }

.service-includes { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.service-include-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.87rem;
  color: var(--gray);
  line-height: 1.55;
}
.service-include-item::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--beige);
  flex-shrink: 0;
  margin-top: 7px;
}

/* ── FOOTER ── */
footer {
  background: var(--black);
  color: rgba(255,255,255,0.45);
  padding: 72px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 52px;
  margin-bottom: 60px;
}
.footer-brand .nav-logo-text {
  font-size: 1.4rem;
  margin-bottom: 16px;
  display: block;
}
.footer-brand p {
  font-size: 0.83rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.32);
  max-width: 240px;
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}
.footer-social a {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.38);
  transition: all 0.3s;
}
.footer-social a:hover { border-color: var(--beige); color: var(--beige); }
.footer-social a svg { width: 13px; height: 13px; }

.footer-col h5 {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.35);
  transition: color 0.25s;
}
.footer-col ul li a:hover { color: var(--beige); }

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}
.footer-bottom p { font-size: 0.76rem; color: rgba(255,255,255,0.2); }
.footer-legal { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-legal a {
  font-size: 0.74rem;
  color: rgba(255,255,255,0.2);
  transition: color 0.25s;
}
.footer-legal a:hover { color: rgba(255,255,255,0.55); }

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 900;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #22C55E;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(34,197,94,0.35);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
  animation: waFloat 3.5s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1) !important;
  box-shadow: 0 8px 28px rgba(34,197,94,0.48);
  animation: none;
}
.whatsapp-float svg { width: 28px; height: 28px; fill: white; }
@keyframes waFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-5px); }
}
.whatsapp-tooltip {
  position: absolute;
  right: 66px;
  background: var(--dark);
  color: var(--white);
  font-size: 0.74rem;
  font-weight: 500;
  padding: 7px 12px;
  border-radius: var(--radius);
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateX(8px);
  transition: all 0.3s var(--ease-out);
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; transform: translateX(0); }

/* ── QUOTE SECTION ── */
.quote-section {
  padding: var(--section-pad) 0;
  background: var(--dark);
  text-align: center;
}
.quote-section blockquote {
  font-family: var(--ff-display);
  font-size: clamp(1.5rem, 3.2vw, 2.4rem);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.45;
  max-width: 760px;
  margin: 20px auto 22px;
  letter-spacing: -0.01em;
}
.quote-section cite {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  font-style: normal;
}

/* ── VALUES GRID ── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
  margin-top: clamp(48px, 6vw, 72px);
}
.values-section .container {
  max-width: 1400px;
  width: 100%;
  padding-left: 2rem;
  padding-right: 2rem;
  margin-inline: auto;
}

/* ── LEGAL PAGES ── */
.legal-content h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 400;
  color: var(--dark);
  margin-top: 52px;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p {
  margin-bottom: 16px;
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.7;
}
.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.legal-content ul li {
  font-size: 0.93rem;
  color: var(--gray);
  line-height: 1.75;
}
.legal-content a { color: var(--beige); text-decoration: underline; }
.legal-content a:hover { color: #b08347; }
.legal-content em { color: var(--light-gray); font-style: italic; }

.cookies-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0 28px;
  font-size: 0.87rem;
}
.cookies-table th {
  background: var(--cream);
  color: var(--dark);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 16px;
  text-align: left;
  border-bottom: 2px solid rgba(196,150,90,0.25);
}
.cookies-table td {
  padding: 14px 16px;
  color: var(--gray);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  vertical-align: top;
  line-height: 1.65;
}
.cookies-table tr:last-child td { border-bottom: none; }
@media (max-width: 600px) {
  .cookies-table { font-size: 0.82rem; }
  .cookies-table th, .cookies-table td { padding: 10px 12px; }
}

/* ── UTILITIES ── */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.text-center { text-align: center; }

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */

/* ── Tablet ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .services-row-last { max-width: 100%; grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-step { border-right: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05); }
  .process-step:nth-child(2) { border-right: none; }
  .process-step:nth-child(3) { border-bottom: none; }
  .process-step:last-child   { border-right: none; border-bottom: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .gallery-strip { grid-template-columns: repeat(2, 1fr); height: 280px; }
  .cert-grid { grid-template-columns: 1fr 1fr; }
  .service-detail-card { grid-template-columns: 1fr; gap: 40px; }
  .service-detail-card.reverse { direction: ltr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
}

/* ── Mobile ── */
@media (max-width: 768px) {
  :root { --nav-h: 60px; --section-pad: clamp(40px, 6vw, 60px); }

  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; position: absolute; right: 0; top: 50%; transform: translateY(-50%); }
  .nav-inner { padding: 0; justify-content: center; position: relative; }

  .hero { align-items: flex-start; padding-top: calc(var(--nav-h) + clamp(16px, 4vw, 32px)); padding-bottom: clamp(44px, 9vw, 64px); }
  .hero-title { letter-spacing: -0.025em; }
  .hero-scroll { display: none; }

  .section-header { margin-bottom: clamp(32px, 7vw, 48px); }

  .philosophy-grid { grid-template-columns: 1fr; }
  .philosophy-visual { order: -1; }
  .philosophy-badge { display: none; }

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

  .testimonial-card { flex: 0 0 100%; }

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

  .contact-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 22px; }
  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; gap: 16px; }

  .about-grid { grid-template-columns: 1fr; }
  .about-img-secondary { display: none; }
  .cert-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; gap: 14px; }
  .cert-card h4 { font-size: 1.2rem; }
  .cert-card p { font-size: 1rem; line-height: 1.7; }

  .gallery-strip { grid-template-columns: repeat(2, 1fr); height: 200px; }
  .process-steps { grid-template-columns: 1fr; }
  .process-step { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,0.05); }
  .process-step:last-child { border-bottom: none; }

  .cta-banner-actions { flex-direction: column; align-items: center; }
  .cta-banner-actions .btn { width: 100%; max-width: 320px; justify-content: center; }
}

@media (max-width: 480px) {
  .hero-title { font-size: clamp(2.2rem, 9vw, 2.9rem); letter-spacing: -0.02em; }
  .hero-subtitle { font-size: clamp(1rem, 4.5vw, 1.15rem); margin-bottom: 38px; line-height: 1.65; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .btn { padding: 13px 22px; font-size: 0.76rem; }
  .section-header { margin-bottom: clamp(28px, 6vw, 40px); }
  .section-header h2 { font-size: clamp(1.65rem, 6.5vw, 2.1rem); margin-bottom: 14px; }
  .section-header p { font-size: 0.88rem; }
  .service-card { padding: 26px 20px; }
  .service-card h3 { font-size: 1.12rem; }
  .faq-question { font-size: 0.86rem; padding: 16px 0; }
  .testimonial-card { padding: 26px 20px; }
  .testimonial-text { font-size: 0.98rem; }
  .process-step { padding: 24px 18px; }
  .step-num { font-size: 3rem; margin-bottom: 12px; }
}

/* ── Mobile service detail: image always on top ── */
@media (max-width: 768px) {
  .service-detail-card,
  .service-detail-card.reverse {
    direction: ltr;
    grid-template-columns: 1fr;
    gap: 24px;
    padding: clamp(36px, 7vw, 56px) 0;
  }
  .service-detail-card > div:first-child {
    order: -1; /* image always first on mobile */
  }
  .service-detail-card.reverse > div:first-child {
    order: -1;
  }
  .service-detail-img {
    aspect-ratio: 16/9;
    border-radius: var(--radius);
  }
  /* Better mobile service content spacing */
  .service-detail-content { padding: 0; }
  .service-detail-content h2 { font-size: clamp(1.7rem, 6vw, 2.4rem); }
  /* Philosophy section text-only: better mobile */
  .philosophy--text-only { padding: clamp(60px,12vw,90px) 0; }
  .philosophy--text-only .philosophy-layout {
    flex-direction: column;
    align-items: center;
  }
  .philosophy-figure {
    width: clamp(200px, 62vw, 280px);
    margin-top: 1rem;
    margin-inline: auto;
    padding-right: 0;
  }
  .philosophy--text-only .philosophy-text-wrap h2 {
    font-size: clamp(1.8rem, 6.5vw, 2.6rem);
  }
  /* Process steps mobile */
  .process-step { padding: 28px 22px; }
  /* Contact simple mobile */
  .contact-simple { gap: 28px; }
}

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