:root {
  /* Minimal, quiet neutral theme */
  --bg: #f5f3ee;
  --bg-soft: #f0ede7;
  --surface: #ffffff;
  --surface-2: #fbfaf7;
  --surface-light: rgba(255, 255, 255, 0.9);
  --gold: #c9a227;
  --gold-light: #e8c547;
  --blue: #2b9ed6;
  --text: #0b2233;
  --muted: #6b7b86;
  --border: rgba(11, 34, 51, 0.06);
  --shadow: 0 12px 32px rgba(11, 34, 51, 0.08);
  --radius: 14px;
  --header-h: 78px;
  --bg-elevated: rgba(255, 255, 255, 0.9);
  --text-muted: rgba(107, 123, 134, 0.85);
  --accent: #2b9ed6;
  --bg-deep: #ebe6dc;
  --bg-card: #ffffff;
  --font: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  margin: 0;
  min-width: 320px;
  font-family: var(--font);
  color: var(--text);
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.screen-reader-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

address {
  font-style: normal;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  height: var(--header-h);
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 6px 20px rgba(11,34,51,0.06);
}

.nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-icon {
  width: auto;
  height: 64px;
  display: block;
  flex: 0 0 auto;
  object-fit: contain;
  border-radius: 10px;
  background: transparent;
  box-shadow: var(--shadow);
  border: none;
  padding: 6px;
}

.brand-text {
  display: grid;
  gap: 0;
  font-size: 0.78rem;
  line-height: 1.2;
  color: var(--text);
}

.brand-text strong {
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 700;
}

.brand-text span {
  color: var(--muted);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu a {
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-menu a:hover {
  color: var(--text);
}

.nav-menu a.active,
.nav-menu a[aria-current="page"] {
  color: var(--text);
}

.nav-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  color: #07101d !important;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 12px 28px rgba(201, 162, 39, 0.18);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.nav-phone:hover {
  transform: translateY(-2px);
  filter: brightness(1.02);
  box-shadow: 0 16px 34px rgba(201, 162, 39, 0.24);
}

.nav-actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.cart-link {
  position: relative;
}

.nav-cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--surface), var(--surface-2));
  color: var(--text);
  font-weight: 700;
  position: relative;
  box-shadow: 0 10px 24px rgba(11,34,51,0.06);
  transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.nav-cart::before {
  content: "";
  width: 19px;
  height: 19px;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 4h-2l-1 2H2v2h2l3.6 7.59-1.35 2.44A2 2 0 0 0 8 21h11v-2H8l1.1-2h7.45a2 2 0 0 0 1.8-1.11L21 8H7.42L7 4Zm3.2 7 1.12-2h7.45l-1 2H10.2ZM9 22a2 2 0 1 0 0-4 2 2 0 0 0 0 4Zm10 0a2 2 0 1 0 0-4 2 2 0 0 0 0 4Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 4h-2l-1 2H2v2h2l3.6 7.59-1.35 2.44A2 2 0 0 0 8 21h11v-2H8l1.1-2h7.45a2 2 0 0 0 1.8-1.11L21 8H7.42L7 4Zm3.2 7 1.12-2h7.45l-1 2H10.2ZM9 22a2 2 0 1 0 0-4 2 2 0 0 0 0 4Zm10 0a2 2 0 1 0 0-4 2 2 0 0 0 0 4Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.nav-cart:hover {
  transform: translateY(-2px);
  border-color: rgba(201, 162, 39, 0.26);
  background: linear-gradient(135deg, var(--surface), #faf6eb);
  box-shadow: 0 14px 28px rgba(11,34,51,0.09);
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--gold);
  color: #fff;
  font-size: 0.65rem;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  box-shadow: 0 6px 12px rgba(11,34,51,0.08);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
  border-radius: 999px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 640px;
  padding: calc(var(--header-h) + 72px) 0 96px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 12%, rgba(43, 158, 214, 0.04), transparent 26%),
    radial-gradient(circle at 82% 22%, rgba(201, 162, 39, 0.045), transparent 28%),
    linear-gradient(180deg, #f1ede6 0%, var(--bg) 100%);
}

.hero-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.hero-copy {
  max-width: 640px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.1;
  letter-spacing: -0.025em;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.7rem, 6vw, 5.4rem);
  font-weight: 700;
}

.hero-lead {
  max-width: 600px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
}

.hero-flag {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(74, 159, 212, 0.14);
  color: var(--blue);
  font-size: 0.95rem;
  font-weight: 700;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  white-space: nowrap;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #07101d;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  box-shadow: 0 14px 34px rgba(201,162,39,0.18);
  min-height: 58px;
  padding: 0 28px;
  font-size: 1rem;
}

.btn-secondary {
  color: var(--text);
  border: 1px solid var(--border);
  background: var(--surface-2);
  box-shadow: 0 8px 22px rgba(11,34,51,0.05);
  min-height: 54px;
  padding: 0 24px;
}

.btn-secondary:hover {
  border-color: rgba(43, 158, 214, 0.18);
  background: var(--surface);
}

.hero-card {
  position: relative;
  padding: 28px;
  border: 1px solid rgba(11, 34, 51, 0.08);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.92));
  box-shadow: 0 18px 44px rgba(11,34,51,0.08);
  backdrop-filter: blur(8px);
}

.card-label {
  display: block;
  margin-bottom: 14px;
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-card strong {
  display: block;
  font-size: 1.28rem;
  line-height: 1.4;
}

.hero-card p {
  margin: 18px 0 22px;
  color: var(--muted);
}

.hero-card a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  color: var(--blue);
  background: rgba(43, 158, 214, 0.1);
  font-weight: 700;
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-card a:hover {
  background: rgba(43, 158, 214, 0.16);
  transform: translateY(-1px);
}

section {
  position: relative;
}

.services,
.contact {
  padding: 96px 0;
  background: var(--bg-soft);
}

.about {
  padding: 96px 0;
  background: var(--bg);
}

.shop-preview {
  padding: 96px 0;
  background: linear-gradient(180deg, #1f2730, #10161d);
}

.phase-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.phase-card {
  padding: 28px 22px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--surface);
  box-shadow: 0 8px 24px rgba(11,34,51,0.06);
  transition: transform 0.18s ease, border-color 0.18s ease;
}

.phase-card:hover {
  transform: translateY(-4px);
  border-color: rgba(74, 159, 212, 0.35);
}

.phase-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  border-radius: 999px;
  color: #07101d;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  font-weight: 700;
}

.phase-card h3 {
  margin-bottom: 14px;
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--gold-light);
}

.phase-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.section-head {
  max-width: 720px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-head h2,
.about h2 {
  font-size: clamp(2rem, 3.6vw, 3rem);
}

.section-head p:not(.eyebrow),
.about p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  min-width: 0;
  min-height: 220px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  box-shadow: 0 8px 22px rgba(11,34,51,0.04);
  overflow: visible;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 162, 39, 0.42);
  box-shadow: var(--shadow);
}

.service-icon {
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  color: var(--gold);
  flex: 0 0 auto;
}

.service-card h3 {
  margin-bottom: 12px;
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--gold-light);
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.65;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 56px;
  align-items: center;
}

.about-panel {
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--surface);
}

.check-list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  color: var(--muted);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  color: #07101d;
  background: var(--gold);
  border-radius: 999px;
  font-weight: 700;
  line-height: 1;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: 28px;
  align-items: stretch;
}

.contact-list {
  display: grid;
  gap: 12px;
}

.contact-item {
  display: block;
  min-width: 0;
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface-2);
}

a.contact-item:hover {
  border-color: rgba(74, 159, 212, 0.55);
  background: rgba(74, 159, 212, 0.1);
}

.contact-item span {
  display: block;
  margin-bottom: 6px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-item strong {
  display: block;
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.contact-item small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.92rem;
}

.map-box {
  min-height: 420px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--surface);
}

.map-box iframe {
  display: block;
  width: 100%;
  height: 365px;
  border: 0;
}

.map-box a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 55px;
  padding: 0 20px;
  color: var(--blue);
  font-weight: 700;
  background: var(--surface-2);
}

.site-footer {
  padding: 34px 0;
  border-top: 1px solid var(--border);
  background: var(--surface-2);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-inner p {
  margin: 0;
}

.footer-inner strong {
  color: var(--text);
}

@media (max-width: 1040px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-inner,
  .about-grid,
  .contact-grid,
  .phase-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }
}

@media (max-width: 760px) {
  :root {
    --header-h: 70px;
  }

  .container {
    width: min(100% - 28px, 1120px);
  }

  .nav {
    gap: 10px;
    justify-content: flex-start;
  }

  .brand-icon {
    width: auto;
    height: 48px;
    display: block;
    object-fit: contain;
    border-radius: 14px;
    background: transparent;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
    border: none;
    padding: 0;
  }

  .brand-text span {
    font-size: 0.72rem;
  }

  .nav-toggle {
    display: block;
    order: 1;
    flex: 0 0 auto;
    margin-left: 0;
  }

  .brand {
    order: 2;
    gap: 10px;
    margin-right: auto;
  }

  .brand-text {
    display: none;
  }

  .nav-actions {
    order: 3;
    margin-left: auto;
    gap: 10px;
  }

  .nav-cart {
    width: 44px;
    height: 44px;
  }

  .nav-menu {
    position: fixed;
    top: var(--header-h);
    right: 14px;
    left: 14px;
    display: grid;
    gap: 0;
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(5, 11, 20, 0.98);
    box-shadow: var(--shadow);
    transform: translateY(-14px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.22s ease, opacity 0.22s ease;
  }

  .nav-menu.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-menu a {
    display: block;
    padding: 13px 12px;
    text-align: center;
  }

  .nav-phone {
    margin-top: 8px;
  }

  .hero {
    padding: calc(var(--header-h) + 58px) 0 74px;
  }

  h1 {
    font-size: clamp(2.35rem, 11vw, 3.4rem);
  }

  .hero-lead {
    font-size: 1.02rem;
  }

  .hero-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .nav-phone {
    min-height: 44px;
    padding: 0 18px;
    font-size: 0.9rem;
  }

  .services,
  .about,
  .contact {
    padding: 72px 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .footer-inner {
    display: grid;
    text-align: center;
    justify-content: center;
  }
}


/* Google Maps consent */
.map-consent {
  min-height: 360px;
  background: var(--bg-elevated);
}

.map-placeholder {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.85rem;
  padding: 2rem;
  text-align: left;
}

.map-placeholder h3 {
  font-size: 1.35rem;
  line-height: 1.25;
}

.map-placeholder p {
  color: var(--text-muted);
  max-width: 680px;
}

.map-placeholder a {
  color: var(--accent);
  font-weight: 600;
}

.map-consent iframe {
  width: 100%;
  height: 360px;
  border: 0;
  display: block;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.footer-links a {
  color: var(--text-muted);
  font-weight: 600;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--text);
}

/* Legal page */
.legal-page {
  padding-top: var(--header-h);
}

.legal-hero {
  padding: 5rem 0 3rem;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(74, 159, 212, 0.12), transparent), var(--bg-deep);
  border-bottom: 1px solid var(--border);
}

.legal-hero h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.legal-hero p:not(.eyebrow) {
  max-width: 720px;
  color: var(--text-muted);
}

.legal-content {
  padding: 4rem 0;
  background: var(--bg-card);
}

.legal-grid {
  display: grid;
  gap: 1rem;
  max-width: 900px;
}

.legal-card {
  padding: 1.5rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.legal-card h2 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.legal-card p + p {
  margin-top: 0.85rem;
}

.legal-card p {
  color: var(--text-muted);
}

.legal-card strong,
.legal-card a {
  color: var(--text);
}

.legal-card a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
