:root {
  --navy: #0b1a2b;
  --navy-2: #12243a;
  --navy-3: #1b334f;
  --gold: #c6a35e;
  --gold-2: #e8d09a;
  --paper: #f6f1e8;
  --paper-2: #efe7d8;
  --ink: #141414;
  --muted: #6e675c;
  --white: #fff;
  --line: rgba(198, 163, 94, 0.35);
  --shadow: 0 24px 60px rgba(11, 26, 43, 0.16);
  --radius: 18px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  overflow-x: hidden;
  max-width: 100%;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, textarea { font: inherit; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

.serif { font-family: "Cormorant Garamond", serif; }

.topbar {
  background: var(--navy);
  color: #d9d2c5;
  font-size: 13px;
  letter-spacing: .04em;
}
.topbar .container {
  display: flex; justify-content: space-between; gap: 16px;
  padding: 8px 0; flex-wrap: wrap;
}
.topbar a:hover { color: var(--gold-2); }
.topbar .social { display: flex; flex-wrap: wrap; gap: 8px 14px; align-items: center; }

header.site {
  position: sticky; top: 0; z-index: 100;
  background: rgba(246, 241, 232, .96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(11, 26, 43, .08);
}
.navwrap {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 78px; gap: 20px;
  position: relative;
}
.logo { flex-shrink: 0; }
.logo img { height: 52px; width: auto; max-width: 180px; object-fit: contain; }
.menu { display: flex; gap: 28px; align-items: center; }
.menu a {
  font-size: 14px; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; color: var(--navy);
  position: relative;
}
.menu a:after {
  content: ""; position: absolute; left: 0; bottom: -7px;
  width: 0; height: 1px; background: var(--gold); transition: .25s;
}
.menu a:hover:after, .menu a.active:after { width: 100%; }
.menu a.active { color: var(--gold); }
.cta-nav {
  background: var(--navy); color: var(--paper) !important;
  padding: 10px 16px; border-radius: 999px;
}
.cta-nav:after { display: none !important; }
.burger {
  display: none; width: 42px; height: 42px; border: 0; background: transparent;
  cursor: pointer; position: relative;
}
.burger span, .burger span:before, .burger span:after {
  position: absolute; width: 22px; height: 2px; background: var(--navy); left: 10px;
}
.burger span { top: 20px; }
.burger span:before { content: ""; top: -7px; }
.burger span:after { content: ""; top: 7px; }

.hero {
  position: relative; min-height: 88vh; color: var(--white);
  display: grid; place-items: center; overflow: hidden;
  background: var(--navy);
  isolation: isolate;
  width: 100%;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slides img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0; transition: opacity 1.2s ease;
}
.hero-slides img.on { opacity: 1; }
.hero:after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(11,26,43,.82) 0%, rgba(11,26,43,.42) 58%, rgba(11,26,43,.2) 100%);
}
.hero-copy { position: relative; z-index: 2; width: min(1180px, calc(100% - 40px)); padding: 90px 0 70px; }
.eyebrow {
  color: var(--gold-2); letter-spacing: .28em; font-size: 12px;
  text-transform: uppercase; font-weight: 700; margin-bottom: 18px;
}
.hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(42px, 7vw, 84px); line-height: .95;
  font-weight: 500; max-width: 9ch; margin-bottom: 22px;
}
.hero p.lead { max-width: 520px; color: #eadfcd; font-size: 18px; margin-bottom: 32px; }
.actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 22px; border-radius: 999px; font-weight: 700;
  letter-spacing: .04em; border: 1px solid transparent; transition: .2s;
}
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold-2); }
.btn-ghost { border-color: rgba(255,255,255,.5); color: #fff; }
.btn-ghost:hover { background: #fff; color: var(--navy); }
.btn-navy { background: var(--navy); color: var(--paper); }
.btn-navy:hover { background: var(--navy-3); }

.section { padding: 88px 0; }
.section.alt { background: var(--white); }
.kicker {
  color: var(--gold); letter-spacing: .22em; text-transform: uppercase;
  font-size: 12px; font-weight: 800; margin-bottom: 10px;
}
h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(34px, 5vw, 52px); line-height: 1.05; font-weight: 500;
  color: var(--navy); margin-bottom: 18px;
}
.goldline { width: 64px; height: 2px; background: var(--gold); margin: 16px 0 24px; }

.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.split img { width: 100%; height: 520px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.muted { color: var(--muted); }

.stats {
  background: var(--navy); color: #fff; padding: 56px 0;
}
.stats .grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; text-align: center;
}
.stats strong {
  display: block; font-family: "Cormorant Garamond", serif;
  font-size: 56px; color: var(--gold-2); font-weight: 500; line-height: 1;
}
.stats span { color: #cfc6b6; letter-spacing: .08em; text-transform: uppercase; font-size: 13px; }

.grid-4, .grid-3 { display: grid; gap: 22px; }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 10px 30px rgba(11,26,43,.08); transition: transform .25s, box-shadow .25s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card .media { aspect-ratio: 4/5; overflow: hidden; background: #ddd; }
.card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.card:hover img { transform: scale(1.06); }
.card .body { padding: 16px 18px 20px; }
.card h3 { font-size: 18px; color: var(--navy); font-family: "Cormorant Garamond", serif; }
.card small { color: var(--muted); letter-spacing: .08em; text-transform: uppercase; font-size: 11px; }

.mosaic { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.mosaic a { display: block; overflow: hidden; border-radius: 12px; aspect-ratio: 1; }
.mosaic img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s; }
.mosaic a:hover img { transform: scale(1.08); }
.mosaic a:nth-child(1) { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; min-height: 360px; }

.pagehero {
  background: var(--navy) center/cover no-repeat; color: #fff;
  padding: 92px 0 64px; position: relative;
}
.pagehero:before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,26,43,.55), rgba(11,26,43,.78));
}
.pagehero .container { position: relative; }
.pagehero h1 {
  font-family: "Cormorant Garamond", serif; font-size: clamp(40px, 6vw, 68px); font-weight: 500;
}

.prose { max-width: 760px; }
.prose p { margin-bottom: 16px; color: #3c3832; font-size: 17px; }

.product-view { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: start; }
.gallery-main { border-radius: var(--radius); overflow: hidden; background: #ddd; }
.gallery-main img { width: 100%; height: 560px; object-fit: cover; }
.thumbs { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
.thumbs button { border: 0; padding: 0; background: none; cursor: pointer; border-radius: 10px; overflow: hidden; width: 92px; height: 92px; }
.thumbs img { width: 100%; height: 100%; object-fit: cover; }
.thumbs button.on { outline: 2px solid var(--gold); }

form.contact { display: grid; gap: 14px; }
form.contact .row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
input, textarea {
  width: 100%; border: 1px solid #ddd2bc; background: #fff; border-radius: 12px;
  padding: 13px 14px; color: var(--ink);
}
input:focus, textarea:focus { outline: 2px solid var(--gold); border-color: transparent; }
textarea { min-height: 140px; resize: vertical; }
.hp {
  position: absolute !important;
  width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); border: 0;
}
.form-msg { min-height: 24px; font-weight: 700; }
.form-msg.ok { color: #1e7a46; }
.form-msg.err { color: #a32626; }

.info-list { display: grid; gap: 14px; }
.info-list div { background: #fff; padding: 18px; border-radius: 14px; border: 1px solid var(--line); }
.info-list b { display: block; color: var(--gold); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 4px; }

.mapwrap { border-radius: var(--radius); overflow: hidden; min-height: 340px; box-shadow: var(--shadow); }
.mapwrap iframe { width: 100%; height: 340px; border: 0; }

.job {
  background: #fff; padding: 24px; border-radius: var(--radius);
  border-left: 4px solid var(--gold); box-shadow: 0 10px 24px rgba(11,26,43,.06);
}

footer.site {
  background: var(--navy); color: #d7cbb8; padding: 56px 0 24px;
}
footer .grid {
  display: grid; grid-template-columns: 1.3fr .9fr .9fr; gap: 32px; margin-bottom: 36px;
}
footer h4 {
  font-family: "Cormorant Garamond", serif; color: #fff; font-size: 26px; margin-bottom: 12px; font-weight: 500;
}
footer a:hover { color: var(--gold-2); }
.legal {
  border-top: 1px solid rgba(255,255,255,.1); padding-top: 16px;
  font-size: 13px; display: flex; justify-content: space-between; gap: 10px; flex-wrap: wrap;
}

.lightbox {
  position: fixed; inset: 0; background: rgba(11,26,43,.92); display: none;
  align-items: center; justify-content: center; z-index: 200; padding: 20px;
}
.lightbox.on { display: flex; }
.lightbox img { max-width: min(1100px, 94vw); max-height: 88vh; object-fit: contain; }
.lightbox button {
  position: absolute; top: 18px; right: 18px; background: transparent; border: 0;
  color: #fff; font-size: 32px; cursor: pointer;
}

@media (max-width: 980px) {
  .container { width: min(1180px, calc(100% - 28px)); }
  .topbar { display: none; }

  .logo img { height: 40px; max-width: 150px; }
  .navwrap { min-height: 64px; gap: 12px; }
  .burger { display: block; z-index: 2; flex-shrink: 0; }
  .menu {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    background: #f6f1e8; flex-direction: column; align-items: stretch;
    padding: 12px 20px 20px; gap: 4px;
    border-bottom: 1px solid rgba(11, 26, 43, .08);
    box-shadow: 0 18px 40px rgba(11, 26, 43, .12);
    z-index: 120;
  }
  .menu a { padding: 12px 4px; }
  .menu .cta-nav { text-align: center; margin-top: 8px; }
  .menu.open { display: flex; }

  .hero { min-height: 0; }
  .hero-copy { padding: 56px 0 48px; }
  .hero h1 { max-width: none; font-size: clamp(34px, 10vw, 48px); line-height: 1.08; }
  .hero p.lead { font-size: 16px; }
  .hero:after {
    background: linear-gradient(180deg, rgba(11,26,43,.45) 0%, rgba(11,26,43,.82) 100%);
  }
  .actions { width: 100%; flex-direction: column; align-items: stretch; }
  .actions .btn, .btn { width: 100%; max-width: 100%; justify-content: center; }

  .section { padding: 52px 0; }
  .split, .product-view, footer .grid { grid-template-columns: 1fr; }
  .stats .grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .stats { padding: 36px 0; }
  .stats strong { font-size: clamp(28px, 8vw, 40px); }
  .stats span { font-size: 11px; letter-spacing: .04em; }
  .grid-4, .grid-3 { grid-template-columns: 1fr 1fr; gap: 12px; }
  .mosaic { grid-template-columns: 1fr 1fr; }
  .mosaic a:nth-child(1) { grid-column: span 2; min-height: 200px; }
  .split img, .gallery-main img { height: 260px; }
  .pagehero { padding: 48px 0 32px; }
  .pagehero h1 { font-size: clamp(32px, 9vw, 48px); }
  form.contact .row { grid-template-columns: 1fr; }
  input, textarea { font-size: 16px; }
  .thumbs button { width: 72px; height: 72px; }
  .card .body { padding: 12px 14px 16px; }
}
@media (max-width: 640px) {
  .hero-copy { padding: 40px 0 36px; }
  .eyebrow { letter-spacing: .16em; font-size: 11px; }
}
