:root {
  --stone-50: #faf8f5;
  --stone-100: #f2efea;
  --stone-200: #e7e2d9;
  --stone-300: #d6cfc2;
  --stone-400: #b3aa99;
  --greige: #8c8474;
  --ink: #1c1a17;
  --charcoal: #2c2925;
  --bronze: #a9763f;
  --bronze-deep: #8c5e2d;
  --white: #ffffff;
  --shadow: 0 18px 50px -22px rgba(28, 26, 23, 0.35);
  --shadow-soft: 0 8px 30px -16px rgba(28, 26, 23, 0.25);
  --serif: "Bodoni Moda", Georgia, "Times New Roman", serif;
  --sans: "Schibsted Grotesk", system-ui, -apple-system, Segoe UI, sans-serif;
  --max: 1240px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--stone-50);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.08; letter-spacing: -0.01em; }

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

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

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 32px; }

.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 12px;
  font-weight: 600;
  color: var(--bronze);
}

.btn {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
  padding: 15px 30px;
  border-radius: 2px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.25s ease;
}
.btn-primary { background: var(--ink); color: var(--stone-50); }
.btn-primary:hover { background: var(--bronze-deep); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--stone-50); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 248, 245, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--stone-200);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 78px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand svg { width: 34px; height: 34px; }
.brand-name { font-family: var(--serif); font-size: 23px; font-weight: 600; letter-spacing: 0.01em; }
.brand-name span { color: var(--bronze); }

.nav { display: flex; align-items: center; gap: 34px; }
.nav-links { display: flex; gap: 30px; list-style: none; }
.nav-links a { font-size: 14.5px; font-weight: 500; color: var(--charcoal); letter-spacing: 0.02em; transition: color 0.2s; }
.nav-links a:hover { color: var(--bronze); }

.lang-switch { position: relative; }
.lang-btn {
  font-family: var(--sans); font-size: 13px; font-weight: 600; letter-spacing: 0.08em;
  background: none; border: 1px solid var(--stone-300); padding: 9px 14px; border-radius: 2px;
  cursor: pointer; color: var(--charcoal); text-transform: uppercase;
}
.lang-btn:hover { border-color: var(--bronze); }
.lang-menu {
  position: absolute; right: 0; top: calc(100% + 8px); background: var(--white);
  border: 1px solid var(--stone-200); border-radius: 3px; box-shadow: var(--shadow-soft);
  min-width: 150px; overflow: hidden; display: none;
}
.lang-menu.open { display: block; }
.lang-menu button {
  display: block; width: 100%; text-align: left; background: none; border: none;
  padding: 11px 16px; font-family: var(--sans); font-size: 14px; cursor: pointer; color: var(--charcoal);
}
.lang-menu button:hover { background: var(--stone-100); color: var(--bronze); }
.lang-menu button.active { color: var(--bronze); font-weight: 600; }

.menu-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; }
.menu-toggle span { width: 24px; height: 2px; background: var(--ink); display: block; }

/* ---------- Hero ---------- */
.hero { padding: 92px 0 78px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 64px; align-items: center; }
.hero-copy .eyebrow { display: block; margin-bottom: 22px; }
.hero h1 { font-size: clamp(44px, 6vw, 78px); margin-bottom: 26px; }
.hero h1 em { font-style: italic; color: var(--bronze); }
.hero-lead { font-size: 19px; color: var(--charcoal); max-width: 520px; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-media { position: relative; }
.hero-media img { width: 100%; height: 600px; object-fit: cover; border-radius: 3px; box-shadow: var(--shadow); }
.hero-tag {
  position: absolute; bottom: 28px; left: -28px; background: var(--stone-50);
  padding: 20px 26px; border-radius: 3px; box-shadow: var(--shadow-soft); border-left: 3px solid var(--bronze);
}
.hero-tag .num { font-family: var(--serif); font-size: 32px; font-weight: 600; line-height: 1; }
.hero-tag .lbl { font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--greige); margin-top: 6px; }

/* ---------- Stats strip ---------- */
.stats { border-top: 1px solid var(--stone-200); border-bottom: 1px solid var(--stone-200); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 44px 24px; text-align: center; border-right: 1px solid var(--stone-200); }
.stat:last-child { border-right: none; }
.stat .num { font-family: var(--serif); font-size: 40px; font-weight: 600; color: var(--ink); }
.stat .lbl { font-size: 13px; text-transform: uppercase; letter-spacing: 0.16em; color: var(--greige); margin-top: 8px; }

/* ---------- Editorial split intro ---------- */
.intro { padding: 110px 0; }
.intro-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 72px; align-items: center; }
.intro-media img { width: 100%; height: 540px; object-fit: cover; border-radius: 3px; box-shadow: var(--shadow); }
.intro h2 { font-size: clamp(34px, 4vw, 52px); margin: 20px 0 26px; }
.intro p { color: var(--charcoal); margin-bottom: 20px; }
.intro .signoff { font-family: var(--serif); font-style: italic; font-size: 20px; color: var(--ink); margin-top: 30px; }

/* ---------- Gallery grid ---------- */
.gallery { padding: 30px 0 110px; }
.section-head { max-width: 640px; margin-bottom: 52px; }
.section-head .eyebrow { display: block; margin-bottom: 16px; }
.section-head h2 { font-size: clamp(34px, 4.4vw, 56px); }
.section-head p { color: var(--charcoal); margin-top: 18px; }

.grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 220px;
  gap: 18px;
}
.tile { position: relative; overflow: hidden; border-radius: 3px; }
.tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s cubic-bezier(.2,.7,.2,1); }
.tile:hover img { transform: scale(1.05); }
.tile-cap {
  position: absolute; left: 0; bottom: 0; right: 0; padding: 22px 24px;
  background: linear-gradient(to top, rgba(20,18,16,0.78), transparent);
  color: var(--stone-50);
}
.tile-cap .place { font-size: 12px; text-transform: uppercase; letter-spacing: 0.16em; opacity: 0.85; }
.tile-cap .name { font-family: var(--serif); font-size: 21px; margin-top: 4px; }
.tile-cap .price { font-size: 14px; margin-top: 4px; color: #e3c39a; font-weight: 500; }

.t-wide { grid-column: span 4; grid-row: span 2; }
.t-tall { grid-column: span 2; grid-row: span 2; }
.t-std  { grid-column: span 2; grid-row: span 1; }
.t-half { grid-column: span 3; grid-row: span 1; }

/* ---------- Listing / info cards (sticky) ---------- */
.services { padding: 0 0 110px; }
.services-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 72px; align-items: start; }
.services-aside { position: sticky; top: 110px; }
.services-aside .eyebrow { display: block; margin-bottom: 16px; }
.services-aside h2 { font-size: clamp(32px, 4vw, 48px); margin-bottom: 22px; }
.services-aside p { color: var(--charcoal); margin-bottom: 30px; }
.card-list { display: grid; gap: 22px; }
.scard {
  background: var(--white); border: 1px solid var(--stone-200); border-radius: 4px;
  padding: 34px 36px; box-shadow: var(--shadow-soft); transition: transform 0.3s, box-shadow 0.3s;
}
.scard:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.scard .idx { font-family: var(--serif); font-size: 15px; color: var(--bronze); letter-spacing: 0.1em; }
.scard h3 { font-size: 25px; margin: 12px 0 12px; }
.scard p { color: var(--charcoal); font-size: 16px; }

/* ---------- Quote / testimonial ---------- */
.quote { padding: 104px 0; background: var(--ink); color: var(--stone-100); }
.quote-inner { max-width: 880px; margin: 0 auto; text-align: center; }
.quote-inner .eyebrow { color: #d6a868; }
.quote blockquote {
  font-family: var(--serif); font-size: clamp(26px, 3.4vw, 40px); line-height: 1.3;
  margin: 26px 0 30px; font-weight: 500;
}
.quote blockquote em { color: #d6a868; font-style: italic; }
.quote .attrib { font-size: 14px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--stone-400); }

/* ---------- CTA / contact ---------- */
.cta { padding: 110px 0; }
.cta-box {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-radius: 4px; overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid var(--stone-200);
}
.cta-img img { width: 100%; height: 100%; object-fit: cover; min-height: 460px; }
.cta-content { background: var(--white); padding: 64px 56px; }
.cta-content .eyebrow { display: block; margin-bottom: 16px; }
.cta-content h2 { font-size: clamp(32px, 4vw, 46px); margin-bottom: 20px; }
.cta-content p { color: var(--charcoal); margin-bottom: 30px; }
.contact-line { display: flex; align-items: center; gap: 12px; margin-bottom: 32px; font-size: 18px; }
.contact-line a { color: var(--bronze-deep); font-weight: 600; border-bottom: 1px solid var(--stone-300); }
.contact-line a:hover { border-color: var(--bronze); }

/* ---------- Footer ---------- */
.site-footer { background: var(--charcoal); color: var(--stone-300); padding: 70px 0 40px; }
.footer-top { display: flex; justify-content: space-between; gap: 48px; flex-wrap: wrap; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer-brand svg { width: 32px; height: 32px; }
.footer-brand .brand-name { color: var(--stone-50); }
.footer-entity { font-size: 14.5px; line-height: 1.9; }
.footer-entity .nm { color: var(--stone-50); font-weight: 600; }
.footer-entity a { color: var(--bronze); }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links h4 { font-family: var(--sans); font-size: 12px; text-transform: uppercase; letter-spacing: 0.16em; color: var(--stone-400); margin-bottom: 6px; }
.footer-links a { font-size: 14.5px; transition: color 0.2s; }
.footer-links a:hover { color: var(--bronze); }
.footer-bottom { padding-top: 28px; font-size: 13px; color: var(--greige); }

/* ---------- Policy pages ---------- */
.policy { padding: 70px 0 100px; }
.policy-inner { max-width: 820px; margin: 0 auto; }
.policy .eyebrow { display: block; margin-bottom: 14px; }
.policy h1 { font-size: clamp(36px, 5vw, 56px); margin-bottom: 14px; }
.policy .updated { color: var(--greige); font-size: 14px; margin-bottom: 44px; }
.policy h2 { font-size: 27px; margin: 40px 0 14px; }
.policy p, .policy li { color: var(--charcoal); margin-bottom: 14px; }
.policy ul { padding-left: 22px; margin-bottom: 14px; }
.policy a { color: var(--bronze-deep); border-bottom: 1px solid var(--stone-300); }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-grid, .intro-grid, .services-grid, .cta-box { grid-template-columns: 1fr; gap: 44px; }
  .services-aside { position: static; }
  .hero-media img { height: 440px; }
  .hero-tag { left: 16px; }
  .cta-img img { min-height: 300px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .t-wide, .t-tall, .t-std, .t-half { grid-column: span 2; grid-row: span 1; }
  .t-wide { grid-row: span 2; }
}
@media (max-width: 760px) {
  .nav-links { display: none; }
  .menu-toggle { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute; top: 78px; left: 0; right: 0;
    background: var(--stone-50); padding: 24px 32px; gap: 20px; border-bottom: 1px solid var(--stone-200);
  }
  .wrap { padding: 0 22px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .grid { grid-template-columns: 1fr; }
  .t-wide, .t-tall, .t-std, .t-half { grid-column: span 1; }
}
