/* Font Awesome Display Override for Core Web Vitals */
@font-face {
  font-family: 'Font Awesome 6 Free';
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/webfonts/fa-solid-900.woff2") format("woff2");
}
@font-face {
  font-family: 'Font Awesome 6 Brands';
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/webfonts/fa-brands-400.woff2") format("woff2");
}
/* Floating contact buttons */
.floating-contact {
  position: fixed;
  right: 24px;
  width: 60px;
  height: 60px;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  z-index: 999;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.call-sticky {
  bottom: calc(96px + env(safe-area-inset-bottom, 0px));
  background: linear-gradient(145deg, #18314a, #264968);
  box-shadow: 0 10px 24px rgba(24, 49, 74, 0.34);
}

.whatsapp-sticky {
  bottom: calc(24px + env(safe-area-inset-bottom, 0px));
  background-color: #25D366;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.4);
}

.floating-contact:hover {
  transform: translateY(-4px) scale(1.05);
  color: #fff;
}

.call-sticky:hover {
  box-shadow: 0 14px 28px rgba(24, 49, 74, 0.44);
}

.whatsapp-sticky:hover {
  box-shadow: 0 14px 28px rgba(37, 211, 102, 0.5);
}

@media (max-width: 560px) {
  .floating-contact {
    right: 16px;
    width: 54px;
    height: 54px;
    font-size: 30px;
  }
  .call-sticky {
    bottom: calc(82px + env(safe-area-inset-bottom, 0px));
  }
  .whatsapp-sticky {
    bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  }
}

:root {
  --bg: #f7f3ed;
  --bg-alt: #efe7db;
  --surface: rgba(255,255,255,.82);
  --surface-strong: #fff;
  --surface-warm: rgba(255, 251, 245, .78);
  --text: #1f252d;
  --muted: #5f6975;
  --heading: #13273c;
  --accent: #18314a;
  --accent-2: #c8a76b;
  --line: rgba(24,49,74,.12);
  --line-strong: rgba(24,49,74,.18);
  --shadow: 0 18px 45px rgba(19,39,60,.12);
  --shadow-hover: 0 24px 55px rgba(19,39,60,.16);
  --radius: 24px;
  --radius-sm: 16px;
  --container: min(1120px, calc(100% - 2rem));
}

* { 
  box-sizing: border-box; 
  -webkit-tap-highlight-color: transparent; 
}
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "DM Sans", system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(200,167,107,.16), transparent 28%),
    linear-gradient(180deg, #faf7f2 0%, #f4eee5 100%);
  line-height: 1.6;
  overflow-x: clip; 
}

/* Fixed Image Rule */
img { display: block; width: 100%; max-width: 100%; height: auto; max-height: 100%; }

a { color: inherit; text-decoration: none; }
.skip-link {
  position: absolute; left: 1rem; top: -3rem; z-index: 20;
  padding: .75rem 1rem; border-radius: 999px; background: var(--accent); color: #fff;
}
.skip-link:focus { top: 1rem; }
.section { padding: clamp(4rem, 7vw, 6rem) 0; }
.wrap { width: var(--container); margin: 0 auto; }
.eyebrow, .tag {
  display: inline-flex; gap: .5rem; align-items: center;
  padding: .45rem .9rem; border-radius: 999px; font-size: .82rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .12em; color: var(--accent);
  background: rgba(200,167,107,.17);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.5);
}
h1, h2, h3 {
  margin: 0 0 .8rem;
  font-family: "Playfair Display", Georgia, serif;
  color: var(--heading);
  line-height: 1.1; /* Changed from .98 to prevent line cutoff shifting */
}
h1 { font-size: clamp(2.7rem, 7vw, 5rem); }
h2 { font-size: clamp(2.1rem, 5vw, 3.5rem); }
p { margin: 0 0 1rem; color: var(--muted); }
.site-header {
  position: sticky; top: 0; z-index: 10;
  backdrop-filter: blur(14px);
  background: rgba(247,243,237,.84);
  border-bottom: 1px solid transparent;
  transition: .2s ease;
}
.site-header.scrolled { border-color: var(--line); box-shadow: 0 10px 30px rgba(19,39,60,.08); }
.nav {
  width: var(--container); margin: 0 auto; min-height: 76px;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.brand { display: inline-flex; align-items: center; gap: .9rem; }
.brand-logo-shell {
  width: 84px; height: 84px; padding: 0;
  flex: 0 0 84px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 24px;
  background: #000000; 
  border: 1px solid rgba(200,167,107,.38); 
  box-shadow: 0 14px 30px rgba(19,39,60,.1); 
  overflow: hidden;
}
.brand-logo {
  width: 100%; height: 100%;
  object-fit: contain;
  object-position: center;
}
.brand-meta { display: grid; gap: .08rem; }
.brand-meta strong { display: block; font-size: 1.02rem; color: var(--heading); letter-spacing: .03em; text-transform: uppercase; }
.brand-meta span { display: block; font-size: .84rem; color: var(--muted); }
.nav-links { display: flex; gap: .35rem; align-items: center; }
.nav-links a {
  position: relative; overflow: hidden;
  padding: .78rem 1rem; border-radius: 999px; font-weight: 700; color: var(--heading);
  transition: color .2s ease, background .2s ease, transform .2s ease;
}
.nav-links a::after {
  content: ""; position: absolute; left: 1rem; right: 1rem; bottom: .48rem; height: 2px;
  background: linear-gradient(90deg, rgba(200,167,107,0), rgba(200,167,107,.95), rgba(200,167,107,0));
  transform: scaleX(.35); opacity: 0; transition: transform .24s ease, opacity .24s ease;
}
.nav-links a:hover, .nav-links a.active { background: rgba(24,49,74,.08); color: var(--accent); transform: translateY(-1px); }
.nav-links a:hover::after, .nav-links a.active::after { opacity: 1; transform: scaleX(1); }
.nav-toggle {
  display: none; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 14px;
  background: var(--surface-strong); color: var(--heading);
}
.hero { padding: clamp(3.2rem, 6vw, 5.5rem) 0 4rem; }
.hero-grid {
  width: var(--container); margin: 0 auto; display: grid; gap: 2rem;
  grid-template-columns: 1.05fr .95fr; align-items: center;
}
.hero-copy p { max-width: 62ch; font-size: 1.05rem; }
.cta-row, .hero-points, .contact-actions, .socials { display: flex; flex-wrap: wrap; gap: .4rem; }
.btn {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; gap: .30rem;
  min-height: 52px; 
  height: 52px;
  padding: .9rem 1.3rem; border-radius: 999px; font-weight: 800;
  border: 1px solid transparent; transition: .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn::after {
  content: ""; position: absolute; inset: 0 auto 0 -120%;
  width: 45%; background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,.3), rgba(255,255,255,0));
  transform: skewX(-22deg);
  transition: left .55s ease;
}
.btn:hover::after { left: 135%; }
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 16px 30px rgba(24,49,74,.18); }
.btn-secondary { background: rgba(255,255,255,.78); color: var(--heading); border-color: var(--line); }
.hero-points { margin-top: 1.4rem; }
.hero-points span { font-weight: 700; color: var(--muted); }
.hero-card {
  position: relative; padding: 1rem; border-radius: 28px; background: rgba(255,255,255,.76);
  border: 1px solid var(--line); box-shadow: var(--shadow);
  isolation: isolate; align-self: start;
}
.hero-card::before {
  content: "";
  position: absolute; inset: auto -8% -12% auto; width: 180px; height: 180px; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,167,107,.24), transparent 68%);
  z-index: -1; filter: blur(2px); animation: drift 9s ease-in-out infinite;
}
.hero-image {
  width: 100%;
  aspect-ratio: 1 / 1.1;
  min-height: 470px; border-radius: 22px; overflow: hidden;
  background:
    linear-gradient(180deg, rgba(24,49,74,.18), rgba(24,49,74,.05)),
    url("images/woman-making-jacket-close-up_11zon.webp") center/cover no-repeat;
  transform-origin: center;
}
.hero-badge {
  position: absolute; left: 1.2rem; bottom: 1.2rem; max-width: 250px;
  padding: 1rem 1.1rem; border-radius: 18px; background: rgba(19,39,60,.88); color: #fff;
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 32px rgba(19,39,60,.22);
}
.hero-badge strong { display: block; font-size: 1.3rem; margin-bottom: .25rem; color: #fff; }
.hero-badge span { display: block; color: rgba(255,255,255,.82); }
.intro { max-width: 720px; margin-bottom: 2rem; }
.grid-3, .grid-4, .gallery-grid, .testimonial-grid {
  display: grid; gap: 1rem;
}
.grid-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
.gallery-grid { grid-template-columns: repeat(4, minmax(0,1fr)); }
.testimonial-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
.card {
  background: linear-gradient(180deg, var(--surface-warm), var(--surface));
  border: 1px solid var(--line); border-radius: var(--radius-sm); box-shadow: 0 10px 28px rgba(19,39,60,.08);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease, background .24s ease;
}
.service-card { padding: 1.35rem; display: flex; flex-direction: column; gap: 1rem; }
.service-card:hover, .quote-card:hover, .gallery-item:hover, .contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(200,167,107,.34);
}
.service-icon, .info-icon, .socials a {
  width: 46px; height: 46px; display: grid; place-items: center; border-radius: 14px;
  background: linear-gradient(145deg, rgba(200,167,107,.16), rgba(24,49,74,.05)); color: var(--accent);
  transition: transform .24s ease, background .24s ease, color .24s ease;
}
.service-card:hover .service-icon,
.info-list li:hover .info-icon,
.socials a:hover {
  transform: translateY(-2px) scale(1.04);
  background: linear-gradient(145deg, rgba(200,167,107,.24), rgba(24,49,74,.08));
}
.price {
  margin-top: auto; width: fit-content; padding: .5rem .8rem; border-radius: 999px;
  background: rgba(200,167,107,.17); color: var(--accent); font-weight: 800; font-size: .92rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.5);
}
.about-grid, .contact-grid {
  display: grid; grid-template-columns: .95fr 1.05fr; gap: 1.2rem; align-items: center;
}
.about-photo { width: 100%; height: auto; max-width: 100%; min-height: 460px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); transition: transform .5s ease, box-shadow .5s ease; }
.about-photo:hover { transform: scale(1.02); box-shadow: var(--shadow-hover); }
.about-copy, .contact-card { padding: 1.5rem; }
.checklist, .info-list, .hours {
  list-style: none; margin: 1.2rem 0 0; padding: 0; display: grid; gap: .9rem;
}
.checklist li, .info-list li {
  display: flex; gap: .8rem; align-items: flex-start; font-weight: 600;
}
.checklist i { color: var(--accent-2); margin-top: .2rem; }
.quote-card { padding: 1.4rem; position: relative; overflow: hidden; }
.quote-card::after {
  content: "\201D"; position: absolute; right: 1rem; top: .2rem; font-size: 5rem;
  font-family: "Playfair Display", Georgia, serif; color: rgba(24,49,74,.08);
}
.quote-card p, .service-card p, .contact-card p, .gallery-item figcaption { transition: color .24s ease; }
.service-card:hover p,
.quote-card:hover p,
.gallery-item:hover figcaption { color: #495462; }
.stars { color: var(--accent-2); letter-spacing: .12em; margin-bottom: .8rem; }
.gallery-item { overflow: hidden; }
.gallery-item img { aspect-ratio: 1 / 1.08; object-fit: cover; transition: transform .55s ease, filter .4s ease; }
.gallery-item:hover img { transform: scale(1.045); filter: saturate(1.04) contrast(1.02); }
.gallery-item figcaption { padding: .9rem 1rem 1rem; font-size: .95rem; color: var(--muted); }
.contact-grid { align-items: start; gap: 1.35rem; }
.contact-card {
  padding: 1.85rem;
}
.contact-card h3 {
  margin-bottom: 1.35rem;
  font-size: 1.65rem;
}
.info-list {
  margin-top: 0;
  gap: 1.4rem;
}
.info-list li {
  gap: 1rem;
}
.info-icon {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  border-radius: 18px;
}
.info-list strong {
  display: block;
  margin-bottom: .18rem;
  color: var(--heading);
  font-size: 1rem;
}
.info-list a, .info-list span {
  color: #616d7b;
  font-size: 1rem;
  line-height: 1.65;
  font-weight: 700;
}
.contact-actions {
  margin-top: 1.5rem;
  gap: 1rem;
}
.contact-actions .btn {
  padding-inline: 1.55rem;
}
.socials {
  margin-top: 1rem;
  gap: 1rem;
}
.socials a {
  width: 56px;
  height: 56px;
  border-radius: 18px;
}
.contact-side {
  display: grid;
  gap: 1rem;
}
.hours-box {
  padding: 1.4rem; border-radius: var(--radius-sm); color: #fff;
  background: linear-gradient(145deg, rgba(24,49,74,.97), rgba(46,78,110,.97));
  box-shadow: 0 20px 36px rgba(24,49,74,.18);
  position: relative; overflow: hidden;
}
.hours-box::before {
  content: "";
  position: absolute; inset: -40% auto auto -10%;
  width: 180px; height: 180px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.12), transparent 68%);
  animation: drift 10s ease-in-out infinite reverse;
}
.hours-box h3 {
  color: #f7efe2;
  margin-bottom: .7rem;
}
.hours-box p { color: rgba(255,255,255,.78); }
.hours li {
  display: flex; justify-content: space-between; gap: 1rem;
  border-bottom: 1px solid rgba(255,255,255,.15); padding-bottom: .65rem;
}
.hours li:last-child { border-bottom: 0; padding-bottom: 0; }
.map-card {
  overflow: hidden;
  padding: 0;
}
.map-embed {
  width: 100%;
  height: 220px;
  border: 0;
  display: block;
  content-visibility: auto; /* Adds strict lazy-rendering */
}
.map-details {
  padding: 1rem 1.15rem 1.2rem;
  border-top: 1px solid var(--line);
}
.map-details strong {
  display: block;
  margin-bottom: .25rem;
  color: var(--heading);
}
.map-details p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.65;
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.faq-card {
  padding: 1.4rem 1.5rem;
}
.faq-card h3 {
  margin-bottom: .55rem;
  font-size: 1.2rem;
}
.contact-note {
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-weight: 700;
  line-height: 1.7;
}
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.grid-3 .service-card:nth-child(2),
.grid-4 .service-card:nth-child(2),
.testimonial-grid .quote-card:nth-child(2),
.gallery-grid .gallery-item:nth-child(2),
.gallery-grid .gallery-item:nth-child(4) { transition-delay: .08s; }
.grid-3 .service-card:nth-child(3),
.grid-4 .service-card:nth-child(3),
.testimonial-grid .quote-card:nth-child(3),
.gallery-grid .gallery-item:nth-child(3) { transition-delay: .14s; }
.grid-4 .service-card:nth-child(4) { transition-delay: .2s; }

@keyframes heroFloat {
  0%, 100% { transform: scale(1) translateY(0); }
  50% { transform: scale(1.015) translateY(-6px); }
}

@keyframes drift {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(10px, -12px, 0); }
}

@media (max-width: 980px) {
  .hero-grid, .about-grid, .contact-grid, .testimonial-grid { grid-template-columns: 1fr; }
  .grid-3, .grid-4, .gallery-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 760px) {
  .nav-toggle { display: inline-grid; place-items: center; }
  .nav-links {
    position: absolute; top: calc(100% + .75rem); left: 1rem; right: 1rem;
    display: flex; flex-direction: column; align-items: stretch; padding: .75rem;
    background: rgba(255,255,255,.98); border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow);
    opacity: 0; visibility: hidden; transform: translateY(-10px); transition: .2s ease;
  }
  .nav-links.open { opacity: 1; visibility: visible; transform: translateY(0); }
  .hero-image, .about-photo { min-height: 340px; }
  .brand-logo-shell { width: 76px; height: 76px; flex-basis: 76px; }
  .brand-logo { transform: scale(2.45); }
  .brand-meta strong { font-size: .92rem; }
  .brand-meta span { font-size: .8rem; }
}
@media (max-width: 560px) {
  /* Layout Adjustments */
  .grid-3, .grid-4, .gallery-grid { grid-template-columns: 1fr; }
  h1 { font-size: clamp(2.35rem, 11vw, 3.25rem); }
  .brand { gap: .7rem; }
  .brand-logo-shell { width: 68px; height: 68px; flex-basis: 68px; }
  .brand-logo { transform: scale(2.55); }
  .brand-meta { display: none; }
  .map-embed { height: 210px; }
  .contact-card { padding: 1.45rem; }
  .info-icon, .socials a { width: 52px; height: 52px; flex-basis: 52px; }
  
  /* Floating Buttons resizing and Safe Areas */
  .floating-contact {
    right: 16px;
    width: 54px;
    height: 54px;
    font-size: 30px;
  }
  .call-sticky {
    bottom: calc(82px + env(safe-area-inset-bottom, 0px));
  }
  .whatsapp-sticky {
    bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  }

  /* Adds a bumper at the bottom of the page so floating buttons don't overlap the map */
  .contact-side { 
    padding-bottom: 90px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
  .reveal { opacity: 1; transform: none; }
}

body.no-scroll { overflow: hidden; }