/* =============================================
   ESTHER DUTRÈO — WELLNESS & SPA
   style.css
   ============================================= */

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

:root {
  --cream: #F7F3EE;
  --warm-white: #FDFAF6;
  --charcoal: #1C1C1A;
  --muted: #6B6560;
  --accent: #C4A882;
  --sage: #8A9B8E;
  --blush: #E8D5C4;
  --dark-accent: #3D2E22;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--warm-white);
  color: var(--charcoal);
  overflow-x: hidden;
  cursor: none;
}

/* ---- CUSTOM CURSOR ---- */
.cursor {
  width: 10px; height: 10px;
  background: var(--charcoal);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.15s ease, background 0.2s ease;
  transform: translate(-50%, -50%);
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1px solid var(--charcoal);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: translate(-50%, -50%);
  opacity: 0.5;
}

/* ---- NAV ---- */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 48px;
  mix-blend-mode: multiply;
  transition: all 0.5s ease;
}
nav.scrolled {
  background: rgba(247,243,238,0.95);
  backdrop-filter: blur(12px);
  padding: 18px 48px;
  mix-blend-mode: normal;
  border-bottom: 1px solid rgba(196,168,130,0.2);
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm-white);
  text-decoration: none;
  transition: color 0.3s;
}
nav.scrolled .nav-logo { color: var(--charcoal); }
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: color 0.3s, opacity 0.3s;
}
.nav-links a:hover { opacity: 0.6; }
nav.scrolled .nav-links a { color: var(--muted); }
nav.scrolled .nav-links a:hover { color: var(--charcoal); }
.nav-book {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--charcoal);
  background: var(--accent);
  padding: 11px 24px;
  text-decoration: none;
  font-weight: 400;
  transition: all 0.3s ease;
}
.nav-book:hover { background: var(--dark-accent); color: var(--cream); }

/* ---- HERO ---- */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--dark-accent);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #2C1F15 0%, #3D2E22 30%, #5B4233 60%, #8A7260 85%, #C4A882 100%);
}
.hero-texture {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}
.hero-circle {
  position: absolute;
  top: 12%; right: 8%;
  width: 380px; height: 380px;
  border: 1px solid rgba(196,168,130,0.2);
  border-radius: 50%;
  animation: rotate 40s linear infinite;
}
.hero-circle::after {
  content: '';
  position: absolute;
  top: 20px; left: 20px; right: 20px; bottom: 20px;
  border: 1px solid rgba(196,168,130,0.12);
  border-radius: 50%;
}
@keyframes rotate { to { transform: rotate(360deg); } }

.hero-label {
  position: absolute;
  top: 50%; right: 10%;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: center center;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(196,168,130,0.6);
  font-weight: 300;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 80px 80px;
  max-width: 900px;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1.2s ease 0.3s forwards;
}
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

.hero-eyebrow {
  font-size: 0.62rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 300;
  margin-bottom: 24px;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(4rem, 9vw, 8rem);
  font-weight: 300;
  line-height: 0.92;
  color: var(--warm-white);
  letter-spacing: -0.02em;
  margin-bottom: 36px;
}
.hero-title em { font-style: italic; color: var(--accent); }
.hero-sub {
  font-size: 0.78rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.5);
  max-width: 380px;
  line-height: 1.9;
  margin-bottom: 48px;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--warm-white);
  text-decoration: none;
  font-weight: 400;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 6px;
  transition: all 0.3s ease;
}
.hero-cta:hover { color: var(--accent); border-color: var(--accent); }
.hero-cta::after { content: '→'; font-size: 1rem; }

.hero-scroll {
  position: absolute;
  bottom: 40px; right: 48px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.hero-scroll span {
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, transparent, rgba(196,168,130,0.5));
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ---- TICKER ---- */
.ticker {
  background: var(--accent);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-track {
  display: inline-flex;
  animation: ticker 22s linear infinite;
}
.ticker-item {
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--dark-accent);
  font-weight: 400;
  padding: 0 48px;
}
.ticker-dot { opacity: 0.4; }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---- INTRO ---- */
.intro {
  padding: 120px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  border-bottom: 1px solid rgba(196,168,130,0.15);
}
.intro-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 10rem;
  font-weight: 300;
  color: var(--blush);
  line-height: 1;
  letter-spacing: -0.03em;
  user-select: none;
}
.intro-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
}
.intro-text h2 em { font-style: italic; color: var(--sage); }
.intro-text p {
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 2;
  color: var(--muted);
  margin-bottom: 40px;
  max-width: 440px;
}
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--charcoal);
  text-decoration: none;
  font-weight: 400;
  border-bottom: 1px solid var(--charcoal);
  padding-bottom: 4px;
  transition: all 0.3s ease;
}
.link-arrow:hover { color: var(--accent); border-color: var(--accent); }
.link-arrow::after { content: '→'; font-size: 0.9rem; }

/* ---- SERVICES ---- */
.services { padding: 0 0 120px; }
.services-header {
  padding: 80px 80px 60px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.section-label {
  font-size: 0.58rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 400;
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.section-title em { font-style: italic; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(196,168,130,0.15);
}
.service-card {
  padding: 56px 48px;
  border-right: 1px solid rgba(196,168,130,0.15);
  border-bottom: 1px solid rgba(196,168,130,0.15);
  position: relative;
  overflow: hidden;
  transition: background 0.4s ease;
}
.service-card:nth-child(3),
.service-card:last-child { border-right: none; }
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { background: rgba(196,168,130,0.05); }
.service-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--accent);
  margin-bottom: 28px;
  letter-spacing: 0.1em;
  display: block;
}
.service-icon {
  font-size: 1.8rem;
  margin-bottom: 20px;
  display: block;
}
.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.service-card p {
  font-size: 0.76rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--muted);
  margin-bottom: 32px;
}
.service-tag {
  display: inline-block;
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  border: 1px solid rgba(138,155,142,0.4);
  padding: 5px 12px;
  font-weight: 400;
}

/* ---- EDITORIAL ---- */
.editorial {
  background: var(--charcoal);
  padding: 100px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.editorial-text .section-label { color: rgba(196,168,130,0.6); }
.editorial-text .section-title { color: var(--warm-white); }
.editorial-text .section-title em { color: var(--accent); }
.editorial-text p {
  font-size: 0.8rem;
  font-weight: 300;
  line-height: 2;
  color: rgba(255,255,255,0.45);
  margin-top: 28px;
  margin-bottom: 40px;
  max-width: 420px;
}
.editorial-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.editorial-card {
  aspect-ratio: 3/4;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(196,168,130,0.1);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease;
}
.editorial-card:hover { border-color: rgba(196,168,130,0.35); }
.editorial-card:first-child {
  margin-top: 40px;
  background: linear-gradient(160deg, #2C3E31, #1C2E21);
}
.editorial-card:last-child {
  background: linear-gradient(160deg, #3C2A1A, #2C1F14);
}
.ec-label {
  font-size: 0.55rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 400;
  margin-bottom: 10px;
}
.ec-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--warm-white);
  line-height: 1.2;
  font-style: italic;
}
.ec-deco {
  position: absolute;
  top: 24px; right: 24px;
  font-size: 2.5rem;
  opacity: 0.1;
}

/* ---- ABOUT ---- */
.about {
  padding: 120px 80px;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 100px;
  align-items: start;
  border-bottom: 1px solid rgba(196,168,130,0.15);
}
.about-image-block { position: relative; }
.about-portrait {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, var(--blush), var(--accent));
  display: flex;
  align-items: flex-end;
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.portrait-deco {
  position: absolute;
  top: 24px; left: 24px;
  width: 60px; height: 60px;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 50%;
}
.portrait-deco::after {
  content: '';
  position: absolute;
  top: 10px; left: 10px; right: 10px; bottom: 10px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
}
.portrait-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--dark-accent);
  line-height: 1.4;
  z-index: 1;
}
.about-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  width: 100px; height: 100px;
  background: var(--charcoal);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.badge-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
}
.badge-label {
  font-size: 0.45rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}
.about-content .section-label { margin-bottom: 12px; }
.about-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 32px;
}
.about-content h2 em { font-style: italic; color: var(--sage); }
.about-content p {
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 2;
  color: var(--muted);
  margin-bottom: 20px;
  max-width: 520px;
}
.credentials {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 520px;
}
.cred-item {
  padding: 20px 24px;
  border: 1px solid rgba(196,168,130,0.2);
}
.cred-item .cred-title {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 400;
  margin-bottom: 6px;
}
.cred-item p {
  font-size: 0.72rem;
  color: var(--charcoal);
  font-weight: 300;
  margin-bottom: 0;
  line-height: 1.5;
}

/* ---- LOCATION ---- */
.location {
  background: var(--cream);
  padding: 100px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.location-info .section-label { color: var(--sage); }
.location-info h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 40px;
}
.location-info h2 em { font-style: italic; }
.contact-lines { display: flex; flex-direction: column; gap: 20px; margin-bottom: 48px; }
.contact-line { display: flex; align-items: flex-start; gap: 20px; }
.contact-line-icon { font-size: 1rem; width: 24px; flex-shrink: 0; margin-top: 2px; }
.contact-line-text {
  font-size: 0.78rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--muted);
}
.contact-line-text strong {
  font-weight: 400;
  color: var(--charcoal);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 4px;
}
.contact-line-text a { color: var(--muted); text-decoration: none; transition: color 0.2s; }
.contact-line-text a:hover { color: var(--accent); }

.location-map {
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--sage) 0%, #6B8B72 50%, #4A6E52 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-pin {
  width: 60px; height: 60px;
  background: var(--warm-white);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  position: relative;
  z-index: 2;
}
.map-pin::after {
  content: '';
  width: 20px; height: 20px;
  background: var(--accent);
  border-radius: 50%;
  transform: rotate(45deg);
}
.map-rings {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
}
.map-ring:nth-child(1) { width: 80px; height: 80px; }
.map-ring:nth-child(2) { width: 140px; height: 140px; }
.map-ring:nth-child(3) { width: 200px; height: 200px; animation: pulse 3s ease-in-out infinite; }
.map-ring:nth-child(4) { width: 280px; height: 280px; animation: pulse 3s ease-in-out 0.5s infinite; }
@keyframes pulse {
  0%, 100% { opacity: 0.2; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.05); }
}
.map-label {
  position: absolute;
  bottom: 32px; left: 32px; right: 32px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  padding: 16px 20px;
}
.map-label p {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal);
  font-weight: 400;
  line-height: 1.6;
}
.map-label .place-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--charcoal);
  display: block;
  margin-bottom: 4px;
}

/* ---- GIFT CTA ---- */
.gift-cta {
  padding: 120px 80px;
  text-align: center;
  background: var(--warm-white);
  border-top: 1px solid rgba(196,168,130,0.15);
  border-bottom: 1px solid rgba(196,168,130,0.15);
}
.gift-cta .section-label { margin-bottom: 20px; text-align: center; }
.gift-cta h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.gift-cta h2 em { font-style: italic; color: var(--accent); }
.gift-cta p {
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 2;
  color: var(--muted);
  max-width: 440px;
  margin: 0 auto 48px;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--warm-white);
  background: var(--charcoal);
  padding: 18px 40px;
  text-decoration: none;
  font-weight: 400;
  transition: all 0.3s ease;
}
.cta-btn::after { content: '→'; font-size: 1rem; }
.cta-btn:hover { background: var(--accent); }
.cta-btn.outline {
  background: transparent;
  color: var(--charcoal);
  border: 1px solid var(--charcoal);
  margin-left: 16px;
}
.cta-btn.outline:hover { background: var(--charcoal); color: var(--warm-white); }

/* ---- FOOTER ---- */
footer { background: var(--charcoal); padding: 80px 80px 48px; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 48px;
}
.footer-brand .logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--warm-white);
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  display: block;
}
.footer-brand p {
  font-size: 0.72rem;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(255,255,255,0.35);
  max-width: 260px;
  margin-bottom: 32px;
}
.social-links { display: flex; gap: 16px; }
.social-link {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: all 0.3s;
}
.social-link:hover { border-color: var(--accent); color: var(--accent); }
.footer-col h4 {
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  font-weight: 400;
  margin-bottom: 24px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li a {
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--accent); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  font-size: 0.62rem;
  font-weight: 300;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.05em;
}

/* ---- SCROLL REVEAL ---- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  nav { padding: 20px 24px; }
  .nav-links { display: none; }
  .hero-content { padding: 0 24px 60px; }
  .hero-title { font-size: clamp(3rem, 12vw, 5rem); }
  .intro,
  .services-header,
  .editorial,
  .about,
  .location,
  .gift-cta,
  footer { padding-left: 24px; padding-right: 24px; }
  .intro, .editorial, .about, .location { grid-template-columns: 1fr; gap: 48px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card:nth-child(3) { border-right: 1px solid rgba(196,168,130,0.15); }
  .service-card { border-right: none; }
  .editorial-cards { grid-template-columns: 1fr; }
  .editorial-card:first-child { margin-top: 0; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .credentials { grid-template-columns: 1fr; }
  .about-portrait { max-width: 320px; }
}
