:root {
  --navy-950: #0a1628;
  --navy-900: #0f172a;
  --navy-800: #172554;
  --navy-700: #1e3a8a;
  --bg: #f8fafc;
  --card: #ffffff;
  --dark: var(--navy-900);
  --text: #0b1220;
  --muted: #64748b;
  --brand: var(--navy-950);
  --brand-accent: var(--navy-700);
  --line: #e2e8f0;
  --wa: #25d366;
  --wa-dark: #128c7e;
}

* { box-sizing: border-box; }
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 10000;
  padding: 12px 18px;
  background: var(--brand);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 0 0 10px 0;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.25);
}
.skip-link:focus {
  left: 12px;
  top: 12px;
  outline: 2px solid #fff;
  outline-offset: 2px;
}
html, body { margin: 0; padding: 0; font-family: "Poppins", sans-serif; color: var(--text); background: var(--bg); }
body { padding-bottom: 88px; }
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: min(1180px, 92%); margin: 0 auto; }
.container--wide { width: min(1280px, 94%); margin: 0 auto; }
.section { padding: 64px 0; }
.section-head { margin-bottom: 20px; }
.section-head h2 { margin: 0 0 8px; font-size: clamp(1.6rem, 3.8vw, 2.4rem); }
.section-head p { margin: 0; color: var(--muted); }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 99;
  background: rgba(248, 250, 252, 0.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 10px 0; position: relative; }
.brand { display: inline-flex; align-items: center; }
.brand .logo-img,
.brand .logo-svg {
  height: clamp(64px, 16vw, 96px);
  width: auto;
  max-width: min(480px, 94vw);
  display: block;
  object-fit: contain;
  object-position: left center;
}
.footer-logo {
  height: clamp(56px, 10vw, 76px);
  width: auto;
  max-width: min(380px, 90vw);
  display: block;
  object-fit: contain;
}
.section-title-row--center { justify-content: center; }
.mosaic-cta { text-align: center; margin: 24px 0 0; }
.preview-grid--spaced { margin-top: 20px; }
.home-split__cta { margin-top: 12px; }
.top-nav { display: flex; gap: 18px; flex-wrap: wrap; justify-content: flex-end; }
.top-nav a { padding: 6px 10px; border-radius: 8px; font-weight: 600; color: var(--navy-900); }
.top-nav a.active, .top-nav a:hover { background: rgba(30, 58, 138, 0.12); color: var(--navy-950); }
.nav-toggle { display: none; border: 1px solid var(--line); background: #fff; padding: 8px 10px; border-radius: 8px; cursor: pointer; font-weight: 600; }

/* Hero */
.hero { position: relative; min-height: 76vh; display: grid; align-items: center; overflow: hidden; }
.hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(105deg, rgba(10, 22, 40, 0.88) 0%, rgba(15, 23, 42, 0.55) 45%, rgba(30, 58, 138, 0.25) 100%); z-index: 1; }
.hero-content { position: relative; z-index: 2; color: #fff; max-width: 670px; }
.kicker { margin: 0; font-size: 0.9rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }
.hero h1 { margin: 10px 0; font-size: clamp(2.2rem, 6vw, 4rem); }
.hero p { margin: 0; }
.hero-actions { margin-top: 18px; display: flex; flex-wrap: wrap; gap: 10px; }

.btn-primary, .btn-secondary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: 10px; padding: 12px 18px; font-weight: 600; border: 0; cursor: pointer;
  font-family: inherit; font-size: 1rem;
}
.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { background: var(--brand-accent); filter: none; }
.btn-secondary { background: #fff; color: #0f172a; }
.btn-secondary:hover { background: #f1f5f9; }
.btn-wa { background: var(--wa); color: #fff; }
.btn-wa:hover { background: var(--wa-dark); }

.dark-section { background: var(--dark); color: #fff; }
.dark-section .section-head h2 { color: #fff; }
.dark-section .section-head p { color: #cbd5e1; }

/* Gallery: card box — image on top, description below */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 22px;
}
.gallery-card {
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.gallery-card:hover {
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.12);
  transform: translateY(-2px);
}
.gallery-card__media {
  aspect-ratio: 16 / 10;
  background: #e2e8f0;
  overflow: hidden;
}
.gallery-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.gallery-card:hover .gallery-card__media img {
  transform: scale(1.04);
}
.gallery-card__body {
  padding: 18px 20px 22px;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.gallery-card__body h3 {
  margin: 0 0 12px;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.25;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(30, 58, 138, 0.25);
}
.gallery-card__body ul {
  margin: 0;
  padding-left: 1.15rem;
  font-size: 0.92rem;
  line-height: 1.55;
  color: #475569;
}
.gallery-card__body li {
  margin-bottom: 6px;
}
.gallery-card__body li:last-child {
  margin-bottom: 0;
}

.video-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; }
.video-grid video { width: 100%; min-height: 280px; border-radius: 14px; background: #000; }

/* Services page — uniform cards */
.services-intro {
  max-width: 720px;
  margin: 0 auto 28px;
  text-align: center;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.6;
}
.services-intro a { color: var(--brand-accent); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

.services-grid--uniform {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
  gap: 22px;
}
.service-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 22px rgba(15, 23, 42, 0.06);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.service-card__media {
  aspect-ratio: 16 / 10;
  background: #e2e8f0;
  overflow: hidden;
}
.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.service-card__media--svg {
  background: linear-gradient(160deg, #f1f5f9 0%, #e2e8f0 100%);
}
.service-card__media--svg img {
  object-fit: contain;
  padding: 16px 20px;
}
.service-card__body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 10px;
}
.service-card__title {
  margin: 0;
  font-size: 1.2rem;
  color: var(--navy-950);
  line-height: 1.25;
}
.service-card__lead {
  margin: 0;
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.55;
}
.service-card__list {
  margin: 0;
  padding-left: 1.15rem;
  color: #334155;
  font-size: 0.9rem;
  line-height: 1.5;
  display: grid;
  gap: 6px;
  flex: 1;
}
.service-card__meta {
  margin: 8px 0 0;
  font-size: 0.88rem;
  font-weight: 600;
}
.service-card__meta a {
  color: var(--brand-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.service-card__meta .muted { font-weight: 400; color: var(--muted); }

.services-cta {
  margin-top: 48px;
  text-align: center;
  padding: 36px 24px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--navy-950) 0%, var(--navy-800) 100%);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.services-cta__title { margin: 0 0 10px; font-size: 1.5rem; }
.services-cta__text { margin: 0 auto 20px; max-width: 520px; color: rgba(255, 255, 255, 0.88); line-height: 1.55; }
.services-cta .btn-primary { background: #fff; color: var(--navy-950); }
.services-cta .btn-primary:hover { background: #f1f5f9; }

.preview-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; }
.preview-grid img, .preview-grid video { border-radius: 12px; object-fit: cover; width: 100%; min-height: 220px; background: #000; }

/* Contact page */
.contact-page { padding-top: 32px; }
.contact-wrap { display: grid; grid-template-columns: 1fr 1.15fr; gap: 32px; align-items: start; }
.contact-info-card {
  background: linear-gradient(145deg, var(--navy-950) 0%, var(--navy-700) 55%, var(--navy-800) 100%);
  color: #fff;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 12px 40px rgba(30, 58, 138, 0.35);
}
.contact-info-card h2 { margin: 0 0 12px; font-size: 1.75rem; }
.contact-info-card > p { margin: 0 0 16px; color: rgba(255,255,255,0.9); line-height: 1.6; }
.contact-info-list { list-style: none; margin: 0 0 20px; padding: 0; display: grid; gap: 12px; }
.contact-info-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.95);
}
.contact-info-list svg { flex-shrink: 0; margin-top: 2px; opacity: 0.9; }
.contact-actions-row { display: flex; flex-wrap: wrap; gap: 10px; }

.contact-form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0;
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}
.contact-form-head {
  background: linear-gradient(90deg, #f8fafc, #eff6ff);
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
}
.contact-form-head h3 { margin: 0; font-size: 1.25rem; color: var(--text); }
.contact-form-head p { margin: 6px 0 0; font-size: 0.9rem; color: var(--muted); }

.contact-form { padding: 24px; display: grid; gap: 0; color-scheme: light; }

.date-field__control {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  background: #f8fafc;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.date-field__control:hover,
.date-field__control:focus-within {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.18);
  background: #fff;
}
.date-field__control input[type="date"] {
  flex: 1;
  min-width: 0;
  width: 100%;
  margin: 0;
  border: 0;
  background: transparent;
  padding: 12px 0;
  font: inherit;
  color: var(--text);
  cursor: pointer;
}
.date-field__control input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: 0.85;
  padding: 4px;
  margin-left: 4px;
}
.date-field__icon {
  flex-shrink: 0;
  display: flex;
  color: #64748b;
  pointer-events: none;
}

.select-field__wrap {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 48px;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  background: #f8fafc;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.select-field__wrap:hover,
.select-field__wrap:focus-within {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.18);
  background: #fff;
}
.select-field__wrap select {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 12px 44px 12px 14px;
  font: inherit;
  color: var(--text);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 10px;
}
.select-field__chevron {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: #64748b;
  pointer-events: none;
}

/* Strip outer input/select chrome when wrapped in custom controls */
.form-field .date-field__control input[type="date"] {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.form-field .date-field__control input[type="date"]:focus {
  outline: none;
  box-shadow: none;
  border: 0;
}
.form-field .select-field__wrap select {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.form-field .select-field__wrap select:focus {
  outline: none;
  box-shadow: none;
  border: 0;
}
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 640px) { .form-row-2 { grid-template-columns: 1fr; } }

.form-field { margin-bottom: 16px; }
.form-field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: #334155;
  margin-bottom: 6px;
}
.form-field .input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.form-field .input-wrap .field-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: #94a3b8;
  pointer-events: none;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  padding: 12px 14px 12px 44px;
  font: inherit;
  background: #f8fafc;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-field textarea { padding-left: 44px; min-height: 120px; resize: vertical; }
.form-field.form-field-plain input,
.form-field.form-field-plain select {
  padding-left: 14px;
}
.input-wrap-textarea { align-items: flex-start; }
.input-wrap-textarea .field-icon { top: 14px; transform: none; }
.input-wrap-textarea textarea { padding-top: 12px; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.2);
  background: #fff;
}
.form-field select { padding-left: 14px; appearance: auto; cursor: pointer; }

.form-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 8px;
}
@media (max-width: 520px) { .form-actions { grid-template-columns: 1fr; } }

.form-status {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 0.9rem;
  line-height: 1.45;
}
.form-status--ok {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}
.form-status--err {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.form-actions .btn-primary,
.form-actions .btn-secondary,
.form-actions .btn-wa {
  width: 100%;
  padding: 14px 16px;
}

.inline-actions { display: flex; gap: 10px; flex-wrap: wrap; }

.site-footer { background: #020617; color: #cbd5e1; padding: 16px 0; }
.footer-wrap { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.footer-wrap div { display: flex; gap: 12px; }

/* Floating WhatsApp */
.wa-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1000;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--wa);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55);
}
.wa-float svg { width: 32px; height: 32px; display: block; }

/* —— Store-style layout (collection / hire site) —— */
.announcement-bar {
  background: var(--navy-950);
  color: #cbd5e1;
  font-size: 0.8125rem;
  text-align: center;
  padding: 7px 14px;
  line-height: 1.4;
}
.announcement-bar a {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.announcement-bar a:hover { color: #e2e8f0; }

.site-header--store {
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.04);
  padding-bottom: 0;
}
.header-store {
  display: flex;
  align-items: center;
  gap: 12px 16px;
  padding: 2px 0 0;
  position: relative;
  flex-wrap: wrap;
  row-gap: 6px;
}
.site-header--store { position: sticky; top: 0; z-index: 99; }
.header-store .top-nav {
  flex: 1;
  justify-content: center;
  gap: 6px 28px;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.header-phone {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--navy-950);
  white-space: nowrap;
}
.header-phone:hover { color: var(--navy-700); }
.btn-header-cta {
  display: inline-flex;
  align-items: center;
  background: var(--navy-950);
  color: #fff !important;
  padding: 8px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.88rem;
  transition: background 0.2s ease;
}
.btn-header-cta:hover { background: var(--navy-700); }

.hero--store { min-height: 78vh; }
/* Sit hero copy under the nav — avoids a large empty band from vertical centering in a tall hero */
.hero.hero--store {
  align-items: start;
  padding-top: clamp(12px, 3vh, 36px);
  padding-bottom: clamp(48px, 12vh, 120px);
}
.hero.hero--store.hero--tall {
  min-height: min(82vh, 880px);
}
.hero-content--center {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 0 16px;
}
.hero-content--center .hero-actions { justify-content: center; }

.promo-strip {
  background: linear-gradient(90deg, #f8fafc 0%, #eef2ff 50%, #f8fafc 100%);
  border-bottom: 1px solid var(--line);
  padding: 14px 16px;
  font-size: 0.9rem;
  color: var(--navy-900);
  text-align: center;
}
.promo-strip__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 16px;
}
.promo-strip__dot { opacity: 0.45; }

.section--collection { padding: 56px 0; }
.section-title-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}
.section-title-row h2 {
  margin: 0;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--navy-950);
}
.link-all {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy-700);
  padding-bottom: 2px;
  border-bottom: 2px solid rgba(30, 58, 138, 0.35);
}
.link-all:hover {
  color: var(--navy-950);
  border-bottom-color: var(--navy-950);
}
.section-sub {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 52ch;
}
.section--collection .section-sub { margin-left: auto; margin-right: auto; text-align: center; }
.section-head--center { text-align: center; }
.section-head--center .section-sub { margin-left: auto; margin-right: auto; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.product-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.1);
}
.product-card__media {
  aspect-ratio: 3 / 4;
  background: #e2e8f0;
  overflow: hidden;
}
.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-card__body {
  padding: 16px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.product-card__body h3 {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--navy-950);
  line-height: 1.3;
}
.product-card__price {
  margin: 0;
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy-700);
}

.collection-banner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  margin-bottom: 36px;
  min-height: 280px;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
}
.collection-banner__media img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
}
.collection-banner__content {
  background: linear-gradient(135deg, var(--navy-950) 0%, var(--navy-800) 100%);
  color: #fff;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.collection-banner__content h3 {
  margin: 0 0 10px;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 800;
}
.collection-banner__content p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.55;
  font-size: 0.95rem;
}
.collection-banner__content .btn-primary {
  align-self: flex-start;
  background: #fff;
  color: var(--navy-950) !important;
}
.collection-banner__content .btn-primary:hover {
  background: #e2e8f0;
}

.site-footer--store {
  /* Match logo-official.png baked-in white so the mark does not sit on a different grey */
  background: #ffffff;
  color: var(--navy-900);
  border-top: 1px solid var(--line);
  padding: 0;
}
.footer-store { padding: 44px 0 20px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 36px;
}
.footer-brand .footer-logo {
  height: clamp(56px, 10vw, 76px);
  width: auto;
  max-width: min(380px, 90vw);
  object-fit: contain;
  object-position: left center;
  margin-bottom: 12px;
}
.footer-brand p {
  margin: 0;
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.6;
  max-width: 280px;
}
.footer-heading {
  margin: 0 0 14px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--navy-700);
}
.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.footer-links a {
  font-size: 0.92rem;
  color: #475569;
  font-weight: 500;
}
.footer-links a:hover { color: var(--navy-950); }
.footer-bottom {
  border-top: 1px solid var(--line);
  margin-top: 36px;
  padding-top: 18px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.82rem;
  color: #94a3b8;
}
.footer-bottom p { margin: 0; }
.footer-bottom a {
  color: var(--brand-accent);
  font-weight: 600;
  text-decoration: none;
}
.footer-bottom a:hover {
  color: var(--navy-950);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.page-hero {
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
  border-bottom: 1px solid var(--line);
  padding: 36px 0 32px;
  text-align: center;
}
.page-hero h1 {
  margin: 0 0 8px;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  color: var(--navy-950);
}
.page-hero p { margin: 0 auto; color: var(--muted); font-size: 0.95rem; max-width: 640px; line-height: 1.55; }
.page-hero a { color: var(--brand-accent); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.page-hero a:hover { color: var(--navy-950); }

/* Home: visual sections */
.hero--tall { min-height: 82vh; }
.section-kicker {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy-700);
  margin-bottom: 8px;
}
.section-soft {
  background: linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%);
}
.home-mosaic { padding: 48px 0 56px; }
.mosaic-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}
.mosaic-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--line);
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
}
.home-packages .packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.package-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(15, 23, 42, 0.07);
  display: flex;
  flex-direction: column;
}
.package-card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}
.package-card__body { padding: 16px 18px 20px; }
.package-card__body h3 { margin: 0 0 6px; font-size: 1.1rem; color: var(--navy-950); }
.package-price {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy-700);
  margin: 0 0 10px;
}
.package-card__body p.muted { margin: 0; font-size: 0.88rem; color: var(--muted); }
.package-card__body a {
  display: inline-block;
  margin-top: 12px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--navy-700);
}
.package-card__body a:hover { color: var(--navy-950); }

.home-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
}
.home-split__media {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.1);
}
.home-split__media img { width: 100%; display: block; aspect-ratio: 4/3; object-fit: cover; }
.home-split__copy h2 { margin: 0 0 12px; font-size: clamp(1.4rem, 3vw, 1.85rem); color: var(--navy-950); }
.home-split__copy ul { margin: 0; padding-left: 1.2rem; color: #475569; line-height: 1.65; }

.visual-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.visual-row img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.08);
}
.preview-grid--large {
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.preview-grid--large img,
.preview-grid--large video {
  min-height: 260px;
  border-radius: 14px;
}

@media (max-width: 900px) {
  .contact-wrap, .preview-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .mosaic-grid { grid-template-columns: repeat(3, 1fr); }
  .home-packages .packages-grid { grid-template-columns: 1fr; }
  .home-split { grid-template-columns: 1fr; }
  .visual-row { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .collection-banner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .nav-toggle { display: inline-block; }
  .nav-wrap .top-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 12px 4%;
    flex-direction: column;
    gap: 4px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    z-index: 98;
  }
  .nav-wrap .top-nav.open { display: flex; }
  .header-store .top-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 12px 4%;
    flex-direction: column;
    gap: 4px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    flex: none;
    justify-content: flex-start;
    z-index: 98;
  }
  .header-store .top-nav.open { display: flex; }
  .header-store { flex-wrap: nowrap; }
  .header-store .nav-toggle { margin-left: auto; }
  .header-phone { font-size: 0.85rem; }
  .product-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
