/* NATALIA NAILS — Romantic Editorial */

:root {
  --bg: #F9F5F0;
  --cream: #EDE5D8;
  --fg: #18100D;
  --muted: #7A6E67;
  --wine: #8B2252;
  --wine-dark: #65183C;
  --blush: #F2C4D0;
  --white: #FFFFFF;
  --border: #DDD0C4;
  --ease: cubic-bezier(0.25, 0, 0.1, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; color-scheme: light; }
body {
  font-family: 'Montserrat', sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a, button, input, textarea { font: inherit; }
button { cursor: pointer; }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--wine); outline-offset: 3px;
}
.skip-link {
  position: absolute; left: 1rem; top: -4rem; z-index: 100;
  background: var(--white); color: var(--fg);
  padding: 0.9rem 1.25rem; border: 1px solid var(--border);
  text-decoration: none; transition: top 0.2s ease;
}
.skip-link:focus-visible { top: 1rem; }

.reveal {
  opacity: 0; transform: translateY(24px);
  visibility: hidden; transition: opacity 0.8s var(--ease), transform 0.8s var(--ease), visibility 0.8s;
}
.reveal.visible { opacity: 1; transform: none; visibility: visible; }

.max-wrap { max-width: 1240px; margin: 0 auto; padding: 0 2rem; }
.text-center { text-align: center; }

/* ─── Type ─── */
.display-serif {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600; letter-spacing: -0.01em; line-height: 1.05;
}
h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(3.25rem, 6vw, 5.5rem); font-weight: 700; line-height: 1.0; letter-spacing: -0.02em; }
h2.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.25rem, 4.5vw, 4rem);
  color: var(--fg); font-weight: 600; line-height: 1.05;
  letter-spacing: -0.01em; margin-top: 0.5rem;
}
h3 { font-size: 1.15rem; font-weight: 600; letter-spacing: 0.01em; }
.eyebrow {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--wine);
}
.lead { font-size: 1rem; line-height: 1.85; color: var(--muted); max-width: 680px; margin: 1.25rem auto 0; }
.divider { width: 48px; height: 1px; background: var(--wine); margin: 1.75rem auto; }

/* ─── Header ─── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: rgba(249, 245, 240, 0.96); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.site-header.scrolled { box-shadow: 0 12px 40px -20px rgba(0,0,0,0.15); }
.header-inner {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.1rem 2rem;
}
.logo {
  width: 52px; height: 52px; border: 1.5px solid var(--fg);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 700;
  color: var(--fg); letter-spacing: -2px;
}
.desktop-nav { display: none; gap: 2.25rem; }
.desktop-nav a, .mobile-nav a {
  color: var(--fg); text-decoration: none; font-size: 0.78rem;
  font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
}
.desktop-nav a:hover, .mobile-nav a:hover { color: var(--wine); }
.header-cta, .btn-outline {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.7rem 1.5rem; border: 1px solid var(--wine); color: var(--wine);
  text-decoration: none; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; border-radius: 0;
  transition: background 0.25s, color 0.25s;
}
.header-cta:hover, .btn-outline:hover { background: var(--wine); color: var(--white); }
.menu-btn {
  background: none; border: none; cursor: pointer;
  display: flex; flex-direction: column; gap: 5px; padding: 8px;
}
.menu-btn span { display: block; width: 24px; height: 1.5px; background: var(--fg); transition: transform 0.3s, opacity 0.3s; }
.menu-btn.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-btn.open span:nth-child(2) { opacity: 0; }
.menu-btn.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.mobile-nav { display: none; flex-direction: column; background: var(--bg); border-top: 1px solid var(--border); padding: 1rem 2rem; }
.mobile-nav.open { display: flex; }
.mobile-nav a { padding: 0.9rem 0; border-bottom: 1px solid var(--border); }
@media (min-width: 900px) {
  .desktop-nav { display: flex; }
  .menu-btn { display: none; }
  .mobile-nav { display: none !important; }
}

/* ─── Buttons ─── */
.btn-copper {
  display: inline-block; margin-top: 1.75rem;
  background: var(--wine); color: var(--white);
  padding: 0.9rem 2.5rem; font-size: 0.75rem; letter-spacing: 0.15em;
  font-weight: 700; text-transform: uppercase; text-decoration: none;
  border: 1px solid var(--wine); transition: background 0.25s, color 0.25s; cursor: pointer;
}
.btn-copper:hover { background: transparent; color: var(--wine); }

/* ─── Hero ─── */
.hero {
  padding: 8rem 2rem 5rem;
  background: linear-gradient(160deg, var(--cream) 0%, var(--bg) 50%);
  border-bottom: 1px solid var(--border);
}
.hero-grid { display: grid; gap: 4rem; align-items: center; }
.hero-copy { max-width: 580px; }
.hero-copy .eyebrow { display: inline-block; margin-bottom: 1.25rem; }
.hero-copy h1 { color: var(--fg); margin-bottom: 1.5rem; }
.hero-copy h1 em { font-style: italic; color: var(--wine); }
.hero-copy p { color: var(--muted); font-size: 1rem; line-height: 1.8; max-width: 500px; margin-bottom: 0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.25rem; }
.hero-stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); margin-top: 2.5rem; }
.hero-stat-grid div {
  background: var(--white); padding: 1.25rem; text-align: center;
}
.hero-stat-grid strong { display: block; font-family: 'Cormorant Garamond', serif; font-size: 2.25rem; font-weight: 700; color: var(--wine); margin-bottom: 0.2rem; }
.hero-stat-grid span { color: var(--muted); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }
.hero-panel { position: relative; min-height: 520px; display: grid; align-items: center; justify-items: end; }
.hero-card { width: 100%; max-width: 500px; overflow: hidden; position: relative; box-shadow: 0 40px 100px rgba(0,0,0,0.12); }
.hero-card img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5; }
.hero-card-text {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 2.5rem 2rem;
  background: linear-gradient(180deg, transparent 0%, rgba(24,16,13,0.88) 100%);
  color: #fff;
}
.hero-card-text span {
  text-transform: uppercase; font-size: 0.68rem; letter-spacing: 0.25em;
  opacity: 0.8; display: block; margin-bottom: 0.6rem; font-weight: 600;
}
.hero-card-text h2 {
  font-family: 'Cormorant Garamond', serif; font-size: 2rem;
  margin: 0 0 0.75rem; font-weight: 600; color: #fff;
}
.hero-card-text p { font-size: 0.9rem; line-height: 1.7; opacity: 0.85; max-width: 340px; }
.hero-accent {
  position: absolute; top: 8%; left: -6%;
  width: 200px; height: 200px; border-radius: 50%;
  background: var(--blush); opacity: 0.5; filter: blur(2px);
}
@media (min-width: 900px) { .hero-grid { grid-template-columns: 1.1fr 0.9fr; } }
@media (max-width: 899px) { .hero-panel { justify-items: center; } .hero-stat-grid { grid-template-columns: 1fr; gap: 0; } }

/* ─── Sections ─── */
.section { padding: 7rem 2rem; scroll-margin-top: 90px; }
.section-cream { background: var(--cream); }
.section-light { background: var(--white); }
.section-alt { background: var(--bg); }
.section-accent { background: rgba(139,34,82,0.04); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 3.5rem; }
.section-head .eyebrow { display: inline-block; margin-bottom: 0.75rem; }

/* ─── Steps ─── */
.steps-grid { display: grid; gap: 1.5rem; margin-top: 3rem; }
@media (min-width: 820px) { .steps-grid { grid-template-columns: repeat(3, 1fr); } }
.step-card {
  border: 1px solid var(--border); background: var(--white);
  padding: 2.5rem 2rem; position: relative; overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}
.step-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--wine);
  transform: scaleX(0); transition: transform 0.35s var(--ease); transform-origin: left;
}
.step-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(139,34,82,0.1); }
.step-card:hover::before { transform: scaleX(1); }
.step-card span {
  display: inline-flex; width: 42px; height: 42px;
  align-items: center; justify-content: center;
  background: var(--wine); color: var(--white); font-weight: 700; margin-bottom: 1.25rem;
  font-family: 'Cormorant Garamond', serif; font-size: 1.25rem;
}
.step-card h3 { font-size: 1.1rem; margin-bottom: 0.75rem; }
.step-card p { color: var(--muted); line-height: 1.8; font-size: 0.9rem; }

/* ─── Features ─── */
.feature-panel { display: grid; gap: 3rem; }
.feature-copy .eyebrow { margin-bottom: 0.75rem; display: block; }
.feature-cards { display: grid; gap: 1rem; grid-template-columns: 1fr; }
.feature-card {
  background: var(--white); border: 1px solid var(--border);
  padding: 1.75rem; transition: box-shadow 0.3s;
}
.feature-card:hover { box-shadow: 0 12px 40px rgba(139,34,82,0.08); }
.feature-icon {
  width: 52px; height: 52px; display: grid; place-items: center;
  background: rgba(139,34,82,0.08); color: var(--wine); font-size: 1.4rem;
  margin-bottom: 1rem;
}
.feature-card h3 { margin-bottom: 0.5rem; color: var(--fg); }
.feature-card p { color: var(--muted); line-height: 1.75; font-size: 0.9rem; }
@media (min-width: 900px) {
  .feature-panel { grid-template-columns: 1.2fr 0.8fr; align-items: center; }
  .feature-cards { grid-template-columns: repeat(3, 1fr); }
}

/* ─── Process ─── */
.process-grid { display: grid; gap: 1.25rem; margin-top: 3rem; }
@media (min-width: 768px) { .process-grid { grid-template-columns: repeat(4, 1fr); } }
.process-step {
  border: 1px solid var(--border); background: var(--white);
  padding: 2rem 1.5rem; transition: transform 0.3s, box-shadow 0.3s;
}
.process-step:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(139,34,82,0.1); }
.process-step span {
  display: inline-flex; width: 40px; height: 40px; align-items: center; justify-content: center;
  border: 1px solid var(--wine); color: var(--wine);
  font-family: 'Cormorant Garamond', serif; font-weight: 700; font-size: 1.15rem; margin-bottom: 1.25rem;
}
.process-step h3 { font-size: 1rem; margin-bottom: 0.6rem; letter-spacing: 0.02em; }
.process-step p { color: var(--muted); line-height: 1.8; font-size: 0.875rem; }

/* ─── Gallery ─── */
.gallery-grid { display: grid; gap: 0.75rem; margin-top: 3rem; grid-template-columns: 1fr; }
.gallery-grid img { width: 100%; height: 280px; object-fit: cover; transition: transform 0.4s var(--ease); }
.gallery-grid img:hover { transform: scale(1.02); }
@media (min-width: 768px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) {
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
  .gallery-grid img { height: 320px; }
}

/* ─── Services ─── */
.services-grid { display: grid; gap: 1.5rem; margin-top: 3.5rem; grid-template-columns: 1fr; }
@media (min-width: 600px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }
.service-card {
  background: var(--white); border: 1px solid var(--border);
  padding: 2rem 1.5rem; text-align: center;
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}
.service-card:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(139,34,82,0.1); }
.service-card .img-wrap { width: 120px; height: 120px; margin: 0 auto 1.5rem; overflow: hidden; border-radius: 50%; }
.service-card .img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.service-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.45rem; font-weight: 600; color: var(--fg); margin-bottom: 0.5rem; }
.service-card .desc { font-size: 0.875rem; color: var(--muted); margin: 0.5rem 0 1rem; line-height: 1.75; }
.service-card .price { color: var(--wine); font-size: 1.1rem; font-weight: 700; }

/* ─── Testimonials ─── */
.testimonials-panel { display: grid; gap: 2rem; }
@media (min-width: 900px) { .testimonials-panel { grid-template-columns: 1.5fr 1fr; } }
.testimonial-main {
  padding: 3rem; border: 1px solid var(--border);
  background: var(--white); position: relative; overflow: hidden;
}
.testimonial-main::before {
  content: '\201C';
  font-family: 'Cormorant Garamond', serif; font-size: 12rem; font-weight: 700;
  color: var(--blush); position: absolute; top: -2rem; left: 1.5rem; line-height: 1; pointer-events: none;
}
.testimonial-header { display: flex; justify-content: space-between; align-items: flex-end; gap: 1rem; margin-bottom: 1rem; position: relative; z-index: 1; }
.testimonial-header .eyebrow { margin: 0; }
.testimonial-main blockquote {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(1.35rem, 2.5vw, 2rem);
  line-height: 1.5; color: var(--fg); quotes: none; margin: 0.5rem 0;
  font-weight: 600; font-style: italic; position: relative; z-index: 1;
}
.testimonial-main blockquote:before { content: none; }
.testimonial-author { font-weight: 700; color: var(--wine); font-size: 0.9rem; margin-top: 0.5rem; position: relative; z-index: 1; }
.testimonial-controls { display: flex; gap: 0.5rem; margin-top: 0; }
.testimonial-controls button {
  width: 44px; height: 44px; border: 1px solid var(--border);
  background: var(--white); color: var(--fg); font-size: 1.25rem;
  cursor: pointer; transition: background 0.2s, color 0.2s;
}
.testimonial-controls button:hover { background: var(--wine); color: var(--white); border-color: var(--wine); }
.testimonial-list { display: grid; gap: 1rem; }
.testimonial-mini {
  background: var(--white); border: 1px solid var(--border); padding: 1.5rem;
  transition: box-shadow 0.3s;
}
.testimonial-mini:hover { box-shadow: 0 8px 30px rgba(139,34,82,0.08); }
.testimonial-mini p { margin: 0 0 0.75rem; color: var(--muted); line-height: 1.75; font-size: 0.9rem; font-style: italic; }
.testimonial-mini span { color: var(--wine); font-weight: 700; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; }

/* ─── About ─── */
.about-panel { display: grid; gap: 3rem; }
@media (min-width: 900px) { .about-panel { grid-template-columns: 1.1fr 0.9fr; align-items: start; } }
.about-copy { display: grid; gap: 1.25rem; }
.about-copy .eyebrow { display: block; }
.about-highlights { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.75rem; }
.about-highlights li {
  background: rgba(139,34,82,0.06); border-left: 3px solid var(--wine);
  padding: 1rem 1.25rem; color: var(--fg);
}
.about-highlights strong { display: block; margin-bottom: 0.25rem; }
.about-portrait { display: grid; place-items: center; }
.portrait-card { width: 100%; max-width: 420px; position: relative; overflow: hidden; box-shadow: 0 30px 80px rgba(0,0,0,0.1); }
.portrait-card img { width: 100%; display: block; }
.portrait-badge {
  position: absolute; left: 1.5rem; bottom: 1.5rem;
  background: rgba(255,255,255,0.95); color: var(--fg);
  padding: 0.75rem 1.1rem; font-weight: 700; font-size: 0.85rem;
}

/* ─── Contact ─── */
.contact-banners { display: grid; gap: 1.5rem; }
@media (min-width: 1024px) { .contact-banners { grid-template-columns: 1fr 1.4fr; align-items: start; } }
.contact-card, .contact-form-panel {
  background: var(--white); border: 1px solid var(--border); padding: 2.5rem;
}
.contact-details { display: grid; gap: 1.25rem; margin-top: 1.5rem; }
.contact-details .phone {
  display: inline-block; color: var(--wine);
  font-family: 'Cormorant Garamond', serif; font-size: 2.25rem; text-decoration: none;
  font-weight: 600;
}
.info-row { display: grid; gap: 1rem; }
@media (min-width: 580px) { .info-row { grid-template-columns: repeat(2, 1fr); } }
.contact-socials { margin-top: 1.5rem; }
.map-panel { margin-top: 1.5rem; overflow: hidden; }
.map-panel iframe { width: 100%; min-height: 280px; border: 0; display: block; }
.contact-form { display: grid; gap: 1rem; }
.contact-form label { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--fg); }
.contact-form input, .contact-form textarea {
  width: 100%; border: 1px solid var(--border); padding: 0.9rem 1rem;
  font-size: 0.95rem; color: var(--fg); background: var(--bg); border-radius: 0;
}
.contact-form input:focus-visible, .contact-form textarea:focus-visible { outline: 2px solid var(--wine); border-color: var(--wine); }
.form-message { font-size: 0.9rem; color: var(--wine); min-height: 1.4rem; }
.form-message.success { color: #1d5a37; }

/* ─── Socials ─── */
.socials { display: flex; gap: 0.5rem; }
.socials a {
  padding: 0.5rem 1rem; background: var(--wine); color: var(--white);
  text-decoration: none; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; transition: background 0.2s;
}
.socials a:hover { background: var(--wine-dark); }

/* ─── Footer ─── */
.footer {
  background: var(--cream); padding: 5rem 2rem 3rem; border-top: 1px solid var(--border); overflow: hidden;
}
.footer-inner { display: grid; gap: 2.5rem; }
@media (min-width: 768px) { .footer-inner { grid-template-columns: 1fr 1fr; align-items: center; } }
.footer-copy p { color: var(--muted); font-size: 0.9rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 1.5rem; justify-content: flex-end; }
.footer-links a {
  color: var(--fg); font-weight: 700; font-size: 0.75rem;
  letter-spacing: 0.12em; text-transform: uppercase; transition: color 0.2s;
}
.footer-links a:hover { color: var(--wine); }
.phone { font-family: 'Cormorant Garamond', serif; font-size: 2rem; color: var(--wine); text-decoration: none; }
.phone:hover { color: var(--wine-dark); }
.waiting { margin-top: 2rem; font-family: 'Cormorant Garamond', serif; font-style: italic; color: var(--wine); font-size: 1.5rem; }
.copyright { text-align: center; margin-top: 3rem; font-size: 0.72rem; color: var(--muted); letter-spacing: 0.05em; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal.visible { opacity: 1 !important; transform: none !important; visibility: visible !important; }
  * { transition: none !important; }
}
