:root {
  --bg: #ffffff;
  --bg-alt: #f6f4ef;
  --bg-linen: #f1ede5;
  --navy: #1a2540;
  --navy-deep: #0e1828;
  --navy-soft: #2d3a55;
  --ink: #1a2540;
  --ink-soft: #4a5468;
  --muted: #7c8497;
  --line: #e3e1dc;
  --line-strong: #c8c5be;
  --accent: #b88a55;
  --accent-deep: #8c6435;

  --max: 1240px;
  --gutter: 1.5rem;

  --font-display: 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--accent-deep); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.12;
  margin: 0 0 0.6em;
  color: var(--ink);
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
h3 { font-size: 1.4rem; }
h4 { font-size: 1rem; letter-spacing: 0.02em; }
p { margin: 0 0 1em; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: clamp(4rem, 8vw, 7rem) 0; }
.section--white { background: var(--bg); }
.section--linen { background: var(--bg-linen); }
.section--navy { background: var(--navy); color: #e9ecf2; }
.section--navy h2 { color: #fff; }
.section--navy h3 { color: #fff; }

/* Eyebrows + leads */
.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin: 0 0 1rem;
}
.eyebrow--light { color: #c9b88f; }
.eyebrow--center { display: block; text-align: center; }

.section-h2 { margin-bottom: 0.6em; }
.section-h2--center { text-align: center; }
.section-h2--light { color: #fff; }
.section-lead {
  color: var(--ink-soft);
  font-size: 1.1rem;
  max-width: 62ch;
  margin-bottom: 3.5rem;
}
.section-lead--center { margin-left: auto; margin-right: auto; text-align: center; }

.signature {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--navy);
  margin-top: 1.5rem;
}

/* Promo bar */
.promo-bar {
  background: var(--navy-deep);
  color: #d8ddea;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
}
.promo-bar__inner {
  padding: 0.55rem var(--gutter);
  text-align: center;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
  gap: 2rem;
  position: relative;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--ink);
  flex-shrink: 0;
}
.logo__mark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.45rem;
  color: var(--navy);
  letter-spacing: -0.02em;
  padding: 0.45rem 0.7rem;
  border: 1.5px solid var(--navy);
  line-height: 1;
}
.logo__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  line-height: 1.18;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.logo--light { color: #fff; }
.logo--light .logo__mark { color: #fff; border-color: #fff; }
.logo--light .logo__name { color: #fff; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}
.site-nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: 0.01em;
  transition: color 0.15s ease;
}
.site-nav a:hover { color: var(--navy); }

.header-cta {
  background: var(--navy);
  color: #fff !important;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  padding: 0.85rem 1.4rem;
  border-radius: 2px;
  transition: background 0.15s ease;
  white-space: nowrap;
}
.header-cta:hover { background: var(--navy-deep); }

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  width: 36px;
  height: 30px;
  padding: 0;
  flex-direction: column;
  justify-content: space-between;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  transition: transform 0.25s ease, opacity 0.2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 960px) {
  .nav-toggle { display: flex; }
  .header-cta { display: none; }
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    background: #fff;
    padding: 1.5rem var(--gutter);
    gap: 0;
    align-items: stretch;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 30px -20px rgba(0, 0, 0, 0.15);
  }
  .site-nav.open { display: flex; }
  .site-nav a {
    padding: 1rem 0;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
    color: var(--ink);
  }
  .site-nav a:last-child { border-bottom: none; }
}

/* Hero */
.hero {
  position: relative;
  min-height: clamp(560px, 80vh, 720px);
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
}
.hero__image {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(14, 24, 40, 0.78) 0%, rgba(14, 24, 40, 0.55) 45%, rgba(14, 24, 40, 0.35) 100%);
}
.hero__content {
  position: relative;
  max-width: 780px;
  padding: clamp(4rem, 10vh, 7rem) var(--gutter);
}
.hero h1 {
  color: #fff;
  margin-bottom: 1.3rem;
  text-wrap: balance;
}
.hero__lead {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: rgba(255, 255, 255, 0.92);
  max-width: 56ch;
  margin-bottom: 2.4rem;
}
.hero__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 1.7rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border-radius: 2px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary {
  background: var(--navy);
  color: #fff !important;
  border-color: var(--navy);
}
.btn--primary:hover { background: var(--navy-deep); border-color: var(--navy-deep); color: #fff !important; }
.btn--ghost-light {
  background: transparent;
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.6);
}
.btn--ghost-light:hover { background: rgba(255, 255, 255, 0.12); border-color: #fff; color: #fff !important; }
.btn--block { display: block; width: 100%; text-align: center; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.95rem;
  border-bottom: 1.5px solid var(--navy);
  padding-bottom: 1px;
  transition: gap 0.15s ease, color 0.15s ease;
}
.link-arrow:hover { gap: 0.7rem; color: var(--accent-deep); border-color: var(--accent-deep); }
.section--navy .link-arrow { color: #fff; border-color: rgba(255,255,255,0.5); }
.section--navy .link-arrow:hover { color: #c9b88f; border-color: #c9b88f; }

/* Trust band */
.trust-band {
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-band__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding: 2.5rem var(--gutter);
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
  padding: 0.4rem 0;
  border-left: 2px solid var(--accent);
  padding-left: 1.2rem;
}
.trust-item__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.4rem;
  color: var(--navy);
  line-height: 1;
  font-feature-settings: "lnum";
}
.trust-item__lbl {
  font-size: 0.82rem;
  color: var(--ink-soft);
  line-height: 1.4;
}
@media (max-width: 740px) {
  .trust-band__grid { grid-template-columns: repeat(2, 1fr); }
}

/* About */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}
.about__photo {
  border-radius: 2px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--bg-linen);
}
.about__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.about__body p { font-size: 1.05rem; color: var(--ink-soft); }
.about__body p.signature { color: var(--navy); }
@media (max-width: 880px) {
  .about__grid { grid-template-columns: 1fr; }
  .about__photo { aspect-ratio: 16 / 11; }
}

/* Products grid */
.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.product-card {
  background: #fff;
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 30px 60px -30px rgba(14, 24, 40, 0.18);
}
.product-card__img {
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: var(--bg-linen);
}
.product-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-card__img img { transform: scale(1.04); }
.product-card__body { padding: 2rem 1.8rem 2.2rem; }
.product-card__body h3 { margin-bottom: 0.6rem; }
.product-card__body p { color: var(--ink-soft); margin-bottom: 1.4rem; }
@media (max-width: 820px) {
  .products-grid { grid-template-columns: 1fr; }
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 0.9rem;
}
.gallery-grid figure {
  position: relative;
  margin: 0;
  cursor: zoom-in;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--bg-linen);
}
.gallery-grid img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease, filter 0.3s ease;
}
.gallery-grid figure:hover img,
.gallery-grid figure:focus-visible img {
  transform: scale(1.05);
}
.gallery-grid figure::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(14, 24, 40, 0.4));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-grid figure:hover::after { opacity: 1; }
.gallery-empty {
  grid-column: 1 / -1;
  padding: 3rem 2rem;
  text-align: center;
  color: var(--muted);
  background: var(--bg-linen);
  border: 1px dashed var(--line-strong);
}

/* Why us */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.why-card {
  padding: 2rem 1.6rem;
  background: rgba(255, 255, 255, 0.04);
  border-top: 2px solid var(--accent);
}
.why-card h3 {
  color: #fff;
  font-size: 1.15rem;
  margin-bottom: 0.7rem;
}
.why-card p {
  font-size: 0.95rem;
  color: rgba(233, 236, 242, 0.78);
  margin: 0;
  line-height: 1.65;
}

/* Testimonials */
.testimonials__inner { max-width: 880px; margin: 0 auto; text-align: center; }
.testimonial-card {
  background: #fff;
  padding: clamp(2.2rem, 4vw, 3.5rem) clamp(1.5rem, 3vw, 3rem);
  margin-top: 1.5rem;
  border: 1px solid var(--line);
  text-align: left;
}
.testimonial-quote {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 1.2rem;
}
.testimonial-cite {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin: 0;
}

/* Contact */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
}
.contact__intro p { color: var(--ink-soft); }
.contact-info {
  margin: 2rem 0 0;
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 0.6rem 1.4rem;
}
.contact-info dt {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  align-self: center;
}
.contact-info dd { margin: 0; font-size: 1rem; color: var(--ink); }
.contact-info dd a { font-weight: 500; }

.contact-form {
  background: var(--bg-alt);
  padding: clamp(1.8rem, 3vw, 2.4rem);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.contact-form h3 {
  margin: 0 0 0.4rem;
  font-size: 1.5rem;
}
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.contact-form input,
.contact-form textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: normal;
  text-transform: none;
  color: var(--ink);
  padding: 0.85rem 1rem;
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(26, 37, 64, 0.1);
}
.contact-form textarea { resize: vertical; min-height: 110px; }
.contact-form .btn { margin-top: 0.4rem; }
.contact-form__note {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0;
  text-align: center;
  letter-spacing: normal;
  text-transform: none;
  font-weight: 400;
}
.contact-form__note a { color: var(--navy); border-bottom: 1px solid currentColor; }

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

/* Footer */
.site-footer {
  background: var(--navy-deep);
  color: #aab2c4;
  padding-top: 4rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
.footer-col h4 {
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.footer-col ul {
  list-style: none;
  padding: 0; margin: 0;
}
.footer-col li { margin-bottom: 0.55rem; font-size: 0.95rem; }
.footer-col a { color: rgba(255, 255, 255, 0.7); transition: color 0.15s ease; }
.footer-col a:hover { color: #fff; }
.footer-tag {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.65);
  margin: 1.2rem 0 0;
  line-height: 1.55;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 0;
}
.footer-bottom__inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}
.footer-bottom__inner p { margin: 0; }
@media (max-width: 820px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 520px) {
  .footer__grid { grid-template-columns: 1fr; }
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(8, 12, 22, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 2rem;
}
.lightbox.open { display: flex; }
.lightbox-img {
  max-width: 100%; max-height: 90vh; object-fit: contain;
}
.lightbox button {
  position: absolute;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  width: 48px; height: 48px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease;
}
.lightbox button:hover { background: rgba(255, 255, 255, 0.18); }
.lightbox-close { top: 1.5rem; right: 1.5rem; }
.lightbox-prev { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox-counter {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
  letter-spacing: 0.15em;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
