/* ===== Shared brand tokens (same as index.html) ===== */
:root {
  --coral: #FF6B1F;
  --coral-dark: #E55A12;
  --blue: #1976E5;
  --blue-dark: #1259B8;
  --teal: #00B7C7;
  --gold: #FFC93C;
  --ink: #0F2540;
  --ink-soft: #4B5C75;
  --paper: #FFFFFF;
  --line: rgba(15,37,64,0.08);
  --body: #2B2B2B;
  --r-pill: 999px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  padding-top: 84px;                 /* clears the fixed navbar */
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  color: var(--body);
  background: var(--paper);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ========================= NAV (shared) ========================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 48px;
  background: rgba(255,249,242,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 3px solid var(--blue);
  border-bottom: 1px solid transparent;
  transition: padding .25s, border-color .25s, background .25s;
}
.nav.scrolled { padding: 10px 48px; border-bottom-color: var(--line); }
.logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 22px; letter-spacing: -0.02em; }
.logo img { height: 46px; width: auto; display: block; }
.nav.scrolled .logo img { height: 40px; transition: height .25s; }
.nav-links { display: flex; gap: 30px; }
.nav-links a {
  font-weight: 500; font-size: 15px; color: var(--ink-soft);
  position: relative; padding: 6px 0; transition: color .2s;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: linear-gradient(90deg, var(--blue), var(--coral));
  transition: width .25s;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { font-size: 14px; padding: 10px 18px; }
.nav-right { display: flex; align-items: center; gap: 12px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: inherit; font-weight: 600; font-size: 15px;
  padding: 12px 22px; border-radius: var(--r-pill); border: 0; cursor: pointer;
  transition: transform .2s, box-shadow .2s, filter .2s;
  text-decoration: none; white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 100%);
  color: white;
  box-shadow: 0 8px 24px rgba(255,107,31,0.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(255,107,31,0.5); filter: brightness(1.05); }

/* mobile hamburger */
.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border: 0; background: transparent; cursor: pointer;
  padding: 0; place-items: center;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px; background: var(--ink);
  border-radius: 2px; position: relative; transition: transform .25s, opacity .25s;
}
.nav-toggle span::before, .nav-toggle span::after {
  content: ''; position: absolute; left: 0; width: 22px; height: 2px;
  background: var(--ink); border-radius: 2px; transition: transform .25s;
}
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }
.nav.menu-open .nav-toggle span { background: transparent; }
.nav.menu-open .nav-toggle span::before { transform: translateY(7px) rotate(45deg); }
.nav.menu-open .nav-toggle span::after { transform: translateY(-7px) rotate(-45deg); }

/* ===== Diamond monument gallery ===== */
.diamonds {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 26px;
  height: 330px;
  overflow: hidden;
  background: #fff;
  padding: 0;
}
.diamond {
  position: relative;
  flex: 0 0 auto;
  width: 340px; height: 340px;
  margin-top: -150px;            /* clip top half off-screen */
  transform: rotate(45deg);
  overflow: hidden;
  border-radius: 22px;
  box-shadow: 0 10px 30px rgba(15,37,64,0.10);
}
.diamond img {
  width: 142%; height: 142%;
  margin: -21%;
  object-fit: cover;
  transform: rotate(-45deg);
  filter: grayscale(100%);
}
.diamond.color img { filter: none; }
/* tint overlays (reference isn't pure grayscale) */
.diamond.tint-blue::after,
.diamond.tint-warm::after {
  content: ''; position: absolute; inset: 0;
  mix-blend-mode: color; pointer-events: none;
}
.diamond.tint-blue::after { background: #5566a8; opacity: 0.55; }
.diamond.tint-warm::after { background: #b9772b; opacity: 0.6; }

/* ===== Body content ===== */
.about {
  max-width: 1180px;
  margin: 0 auto;
  padding: 60px 32px 40px;
}
.about-kicker { font-size: 22px; font-weight: 700; color: var(--ink); margin: 0 0 6px; }
.about-title { font-size: 56px; font-weight: 800; color: var(--coral); margin: 0 0 28px; letter-spacing: -0.01em; }
.about p { font-size: 17px; margin: 0 0 18px; color: var(--body); }

/* ===== Trust banner ===== */
.trust {
  position: relative;
  max-width: 1180px;
  margin: 16px auto 80px;
  border-radius: 22px;
  overflow: hidden;
  background:
    linear-gradient(100deg, rgba(13,71,161,0.92) 0%, rgba(21,101,192,0.72) 45%, rgba(2,136,209,0.30) 70%, rgba(0,188,212,0.20) 100%),
    url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1400&q=70');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  min-height: 320px;
  padding: 48px 56px;
}
.trust-text { position: relative; z-index: 2; max-width: 560px; color: #fff; }
.trust-text h2 { font-size: 52px; font-weight: 800; margin: 0; line-height: 1.0; letter-spacing: -0.01em; }
.trust-text h3 { font-size: 34px; font-weight: 700; margin: 6px 0 14px; line-height: 1.05; }
.trust-text p { font-size: 16px; margin: 0 0 26px; color: rgba(255,255,255,0.92); }
.trust-btn {
  display: inline-block;
  background: linear-gradient(135deg, #FF8A3D, var(--coral));
  color: #fff; font-weight: 700; font-size: 16px;
  padding: 14px 40px; border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 10px 26px rgba(255,107,31,0.4);
  transition: transform .2s, filter .2s;
}
.trust-btn:hover { transform: translateY(-2px); filter: brightness(1.05); }

/* overlapping photos */
.trust-photos {
  position: absolute; right: 40px; top: 50%; transform: translateY(-50%);
  display: flex; align-items: center; z-index: 2;
}
.trust-photos img {
  width: 150px; height: 230px; object-fit: cover;
  border-radius: 16px; border: 4px solid #fff;
  box-shadow: 0 14px 34px rgba(0,0,0,0.28);
}
.trust-photos img:nth-child(3) { transform: rotate(-6deg); z-index: 3; }
.trust-photos img:nth-child(4) { transform: translateX(-20px) rotate(2deg) scale(1.04); z-index: 2; }
.trust-photos img:nth-child(5) { transform: translateX(-40px) rotate(8deg); z-index: 1; }
.trust-badge {
  position: absolute; z-index: 4;
  background: #fff; border-radius: 12px;
  padding: 6px 10px; font-size: 13px; font-weight: 700;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  display: flex; align-items: center; gap: 4px;
}
.trust-badge.stars { top: 8px; left: 4px; color: #F5A623; }
.trust-badge.heart { bottom: 30px; left: -14px; color: #E0245E; font-size: 18px; }

/* ========================= FOOTER (shared) ========================= */
.footer {
  position: relative;
  background: #0a0b0d;
  color: rgba(255,255,255,0.62);
  padding: 70px 48px 26px;
  overflow: hidden;
}
.footer-decor {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image: url('assets/footer-bg.png');
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
}
.footer > *:not(.footer-decor) { position: relative; z-index: 1; }
.footer-contact {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px;
  padding-bottom: 46px;
}
.fc-item { display: flex; align-items: flex-start; gap: 20px; }
.fc-icon {
  flex: 0 0 64px; width: 64px; height: 64px; border-radius: 50%;
  background: var(--blue); color: #fff;
  display: grid; place-items: center;
}
.fc-icon svg { width: 28px; height: 28px; }
.fc-text h3 { color: #fff; font-size: 22px; font-weight: 700; margin: 0 0 10px; letter-spacing: -0.01em; }
.fc-text p { margin: 0; font-size: 15px; line-height: 1.6; color: rgba(255,255,255,0.6); }
.fc-text a { color: rgba(255,255,255,0.6); transition: color .2s; }
.fc-text a:hover { color: #fff; }
.footer-divider { border: 0; border-top: 1px solid rgba(255,255,255,0.13); max-width: 1280px; margin: 0 auto; }
.footer-main {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1.6fr 1fr 1.3fr 1.2fr 0.7fr; gap: 30px;
  padding: 48px 0 44px;
}
.footer-brand .logo { background: none; padding: 0; box-shadow: none; display: inline-flex; }
.footer-brand .logo img { height: 38px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 15px; line-height: 1.65; margin: 22px 0 0; max-width: 290px; color: rgba(255,255,255,0.58); }
.footer-col h4 { color: #fff; font-size: 17px; font-weight: 700; margin: 0 0 16px; }
.footer-col a { display: block; font-size: 15px; padding: 7px 0; color: rgba(255,255,255,0.6); transition: color .2s; }
.footer-col a:hover { color: #fff; }
.socials { display: flex; gap: 14px; margin-top: 2px; }
.socials a {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,0.09); color: #fff;
  display: grid; place-items: center;
  transition: background .2s, transform .2s;
}
.socials a:hover { background: var(--blue); transform: translateY(-2px); }
.footer-copy {
  text-align: center; font-size: 15px; color: rgba(255,255,255,0.5);
  padding-top: 24px;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .nav, .nav.scrolled { padding: 12px 24px; }
  .nav-toggle { display: grid; }
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: rgba(255,249,242,0.98);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    padding: 8px 24px 16px;
    max-height: 0; overflow: hidden;
    transition: max-height .3s ease;
  }
  .nav.menu-open .nav-links { max-height: 380px; }
  .nav-links a { padding: 12px 0; font-size: 16px; border-bottom: 1px solid var(--line); }
  .nav-links a:last-child { border-bottom: 0; }
  .nav-links a::after { display: none; }

  .diamond { width: 230px; height: 230px; margin-top: -110px; }
  .diamonds { height: 230px; gap: 18px; }
  .trust { flex-direction: column; align-items: flex-start; }
  .trust-photos { position: relative; right: auto; top: auto; transform: none; margin-top: 30px; }
  .about-title { font-size: 44px; }
  .trust-text h2 { font-size: 42px; }
  .footer-main { grid-template-columns: repeat(3, 1fr); gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .diamond { width: 150px; height: 150px; margin-top: -75px; }
  .diamonds { height: 150px; gap: 12px; }
  .about { padding: 40px 20px 30px; }
  .about-title { font-size: 36px; }
  .about p { font-size: 16px; }
  .trust { padding: 32px 24px; }
  .trust-text h2 { font-size: 34px; }
  .trust-text h3 { font-size: 24px; }
  .trust-photos img { width: 110px; height: 170px; }
  .footer-contact { grid-template-columns: 1fr; gap: 28px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-brand { grid-column: 1 / -1; }
}
