:root {
  --brand-700: #013e85;
  --brand-600: #0160ca;
  --brand-500: #1f7ae0;
  --brand-400: #4a9bff;
  --gold: #b8912f;
  --gold-soft: #e7d5a3;
  --ink: #0e1424;
  --ink-soft: #4d5471;
  --ink-faint: #5b6386;
  --bg: #f7f8fb;
  --surface: #ffffff;
  --border: #e6e9f3;
  --check-accent: #1fb955;
  --cta-bg: var(--brand-600);
  --cta-bg-dark: var(--brand-700);
  --radius: 18px;
  --shadow-sm: 0 4px 16px rgba(14, 20, 36, 0.06);
  --shadow: 0 18px 48px rgba(14, 20, 36, 0.10);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3 {
  font-family: 'Sora', 'Inter', sans-serif;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.01em;
}

a { color: inherit; text-decoration: none; }
img, picture { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; }

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--brand-500);
  outline-offset: 3px;
  border-radius: 6px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: 12px 20px;
  border-radius: 0 0 10px 0;
  z-index: 100;
  font-weight: 600;
}
.skip-link:focus {
  left: 0;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease), border-color 0.2s var(--ease);
  white-space: nowrap;
}
.btn .icon { width: 18px; height: 18px; fill: currentColor; flex: none; }
.btn-whatsapp {
  background: var(--cta-bg);
  color: #ffffff;
  box-shadow: 0 8px 22px rgba(1, 96, 202, 0.28);
}
.btn-whatsapp:hover { background: var(--cta-bg-dark); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(1, 96, 202, 0.36); }
.btn-ghost {
  background: transparent;
  color: var(--brand-700);
  border-color: var(--border);
}
.btn-ghost .icon { fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.btn-ghost:hover { border-color: var(--brand-400); background: #eef4ff; transform: translateY(-2px); }
.btn-lg { padding: 16px 32px; font-size: 1.02rem; }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 248, 251, 0.86);
  backdrop-filter: blur(12px) saturate(140%);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 10px 24px;
}
.brand { display: flex; align-items: center; }
.brand-logo { height: 42px; width: auto; }
.nav-links {
  display: flex;
  gap: 30px;
  margin-left: 16px;
  flex: 1;
}
.nav-links a {
  font-weight: 500;
  font-size: 0.94rem;
  color: var(--ink-soft);
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -2px;
  height: 1.5px;
  background: var(--brand-600);
  transition: right 0.25s var(--ease);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { right: 0; }
.nav-cta { margin-left: auto; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: 8px;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 24px 20px;
  border-top: 1px solid var(--border);
  background: var(--surface);
}
.nav-mobile a {
  padding: 11px 4px;
  font-weight: 500;
  color: var(--ink-soft);
}
.nav-mobile .btn { margin-top: 10px; align-self: flex-start; }
.nav-mobile a.btn-whatsapp { color: #ffffff; }
.nav-mobile.open { display: flex; }

@media (max-width: 780px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; margin-left: auto; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 100px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(620px 400px at 12% 8%, rgba(1, 96, 202, 0.10), transparent 62%),
    radial-gradient(560px 380px at 88% 18%, rgba(184, 145, 47, 0.09), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #f3f5fb 100%);
  z-index: -2;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(14, 20, 36, 0.06) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: radial-gradient(560px 360px at 50% 0%, #000 0%, transparent 75%);
  z-index: -1;
}
.hero-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 60px;
  align-items: center;
}
.hero-media {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 760 / 1013;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(231, 213, 163, 0.55);
  border-radius: 18px;
  pointer-events: none;
}
.hero-copy { max-width: 560px; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--brand-600);
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1.5px;
  background: var(--gold);
  display: inline-block;
}
.eyebrow-center { justify-content: center; }
.hero h1 {
  font-size: clamp(2.2rem, 5.2vw, 3.4rem);
  line-height: 1.14;
  font-weight: 700;
}
.hero h1 span {
  font-family: 'Cormorant Garamond', 'Sora', serif;
  font-style: italic;
  font-weight: 600;
  background: linear-gradient(95deg, var(--brand-700), var(--brand-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  margin: 20px 0 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
  line-height: 1.65;
}
.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-top: 32px;
}
.hero-meta {
  margin-top: 24px;
  color: var(--ink-faint);
  font-size: 0.88rem;
  letter-spacing: 0.01em;
}

/* ---------- Strip ---------- */
.strip {
  background: var(--ink);
  color: #c9d2ee;
}
.strip-inner {
  padding: 13px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  text-align: center;
}
.strip-inner p {
  margin: 0;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
}
.strip-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold-soft);
  flex: none;
}

/* ---------- Section shared ---------- */
section { padding: 100px 0; }
.services h2, .about h2, .contact h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.5rem);
  font-weight: 700;
}
.section-sub {
  color: var(--ink-soft);
  margin-top: 14px;
  max-width: 560px;
  font-size: 1.03rem;
  line-height: 1.6;
}

/* ---------- Services ---------- */
.services { background: var(--surface); }
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
  margin-top: 48px;
}
.card {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px 28px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: #cfe0ff;
}
.card-index {
  position: absolute;
  top: 24px;
  right: 26px;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--ink-faint);
  letter-spacing: 0.04em;
}
.card-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 14px;
  margin-bottom: 20px;
}
.card-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--brand-600);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.card h3 {
  font-size: 1.06rem;
  font-weight: 700;
  margin-bottom: 9px;
}
.card p {
  color: var(--ink-soft);
  font-size: 0.93rem;
  line-height: 1.6;
  margin: 0;
}

/* ---------- About ---------- */
.about-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}
.about-text h2 { margin-top: 14px; }
.about-lede {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.28rem;
  font-style: italic;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.55;
  margin-top: 22px;
}
.about-text > p:not(.about-lede) {
  color: var(--ink-soft);
  line-height: 1.75;
  margin-top: 16px;
  font-size: 0.98rem;
}
.about-list {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.about-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--ink);
  font-size: 0.94rem;
}
.about-list .icon {
  width: 18px;
  height: 18px;
  flex: none;
  fill: none;
  stroke: var(--check-accent);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  background: #e6f9ee;
  border-radius: 50%;
  padding: 4px;
  box-sizing: content-box;
}
.about-card {
  background: linear-gradient(165deg, #ffffff, #eef3ff);
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 44px 26px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.about-card::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(184, 145, 47, 0.35);
  border-radius: 18px;
  pointer-events: none;
}
.about-logo { height: 150px; margin: 0 auto; width: auto; }
.about-tag {
  margin-top: 20px;
  font-weight: 700;
  color: var(--brand-700);
  font-size: 0.9rem;
  letter-spacing: 0.03em;
}

@media (max-width: 860px) {
  .about-inner { grid-template-columns: 1fr; }
  .about-card { order: -1; }
}

/* ---------- Gallery ---------- */
.gallery { background: var(--bg); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 48px;
}
.gallery-item {
  position: relative;
  display: block;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease);
}
.gallery-item:hover img,
.gallery-item:focus-visible img { transform: scale(1.06); }
.gallery-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 34px 18px 14px;
  background: linear-gradient(0deg, rgba(8, 12, 24, 0.72), transparent);
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

@media (max-width: 640px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

/* ---------- Quote band ---------- */
.quote-band {
  background: var(--ink);
  color: #fff;
  padding: 88px 0;
}
.quote-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.quote-mark {
  width: 44px;
  height: 33px;
  fill: var(--gold-soft);
  opacity: 0.85;
  margin: 0 auto 20px;
}
.quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.25rem, 2.6vw, 1.6rem);
  line-height: 1.6;
  color: #f2f4fb;
}
.quote-attr {
  margin-top: 22px;
  font-family: 'Sora', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

/* ---------- Reviews ---------- */
.reviews { background: var(--surface); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.review-card {
  margin: 0;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), border-color 0.2s var(--ease);
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
  border-color: #cfe0ff;
}
.review-card blockquote {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--ink);
}
.review-card figcaption {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 0.86rem;
  color: var(--brand-700);
}
.review-card figcaption span {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  color: var(--ink-faint);
  text-transform: none;
  letter-spacing: 0;
}

/* ---------- Contact ---------- */
.contact { background: var(--surface); }
.contact-inner { text-align: center; }
.contact-inner .section-sub { margin-left: auto; margin-right: auto; }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
  margin: 48px 0 42px;
  text-align: left;
}
.contact-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 24px;
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
a.contact-item:hover {
  border-color: #cfe0ff;
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}
.contact-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 4px;
}
.contact-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--brand-600);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-label {
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--brand-600);
}
.contact-value {
  font-weight: 600;
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.5;
}
.contact-cta { margin-top: 8px; }

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.footer-inner {
  padding: 30px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-copy {
  color: var(--ink-faint);
  font-size: 0.84rem;
  margin: 0;
}
.footer-credit {
  color: var(--ink-faint);
  font-size: 0.78rem;
  margin: 0;
}
.footer-credit a {
  color: var(--brand-600);
  font-weight: 600;
}
.footer-credit a:hover { text-decoration: underline; }
.footer-social-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-social {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.footer-social:hover { border-color: var(--brand-400); transform: translateY(-2px); }
.footer-social .icon { width: 16px; height: 16px; fill: none; stroke: var(--ink-soft); stroke-width: 1.8; }
.footer-social .icon.icon-solid { fill: var(--ink-soft); stroke: none; }

@media (max-width: 480px) {
  .footer-inner { justify-content: center; text-align: center; }
  .footer-left { align-items: center; }
}

/* ---------- Floating WhatsApp ---------- */
.fab-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--cta-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px rgba(1, 96, 202, 0.4);
  z-index: 60;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease);
}
.fab-whatsapp:hover { transform: scale(1.08); background: var(--cta-bg-dark); }
.fab-whatsapp .icon { width: 28px; height: 28px; fill: #fff; }

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .hero-media { max-width: 340px; margin: 0 auto; }
  .hero-copy { max-width: none; text-align: center; }
  .eyebrow { justify-content: center; }
  .hero-actions { justify-content: center; }
}

@media (max-width: 780px) {
  section { padding: 68px 0; }
  .hero { padding: 68px 0 76px; }
  .about-card::before { inset: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}
