/* ══════════════════════════════════════════════
   youstaywhere — shared styles
══════════════════════════════════════════════ */
:root {
  --cream:   #F7F4EF;
  --stone:   #C4B49A;
  --charcoal:#1C1A18;
  --forest:  #2C3328;
  --mist:    #E8E3DA;
  --mid:     #7A7268;

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'DM Sans', system-ui, sans-serif;

  --max: 1160px;
  --nav-h: 68px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--cream);
  color: var(--charcoal);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px;
  background: rgba(247,244,239,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}
nav.scrolled { border-bottom-color: var(--mist); }
.nav-logo {
  font-family: var(--serif);
  font-weight: 400; font-size: 1.25rem; letter-spacing: 0.04em;
}
.nav-logo span { color: var(--stone); }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase;
  font-weight: 400; color: var(--mid); transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--charcoal); }
.nav-cta {
  font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase;
  font-weight: 500; padding: 10px 24px;
  border: 1px solid var(--charcoal); color: var(--charcoal);
  transition: all 0.2s; display: inline-block;
}
.nav-cta:hover { background: var(--charcoal); color: var(--cream); }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--charcoal); }
.mobile-menu {
  display: none;
  position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: var(--cream); padding: 32px 40px 40px; z-index: 99;
  border-bottom: 1px solid var(--mist);
  flex-direction: column; gap: 24px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 1.05rem; font-family: var(--serif); font-weight: 400; }

/* ── SHARED ── */
.pt-nav { padding-top: var(--nav-h); }
.section-label {
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--stone); font-weight: 500; margin-bottom: 20px;
}
.page-hero {
  padding: calc(var(--nav-h) + 80px) 40px 72px;
  max-width: var(--max); margin: 0 auto;
}
.page-hero .section-label { margin-bottom: 16px; }
.page-hero h1 {
  font-family: var(--serif); font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 300; line-height: 1.08; letter-spacing: -0.015em; max-width: 760px;
}
.page-hero h1 em { font-style: italic; color: var(--stone); }
.page-hero p { color: var(--mid); max-width: 520px; font-size: 0.95rem; margin-top: 24px; line-height: 1.75; }

.btn-primary {
  padding: 14px 36px; background: var(--cream); color: var(--charcoal);
  font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500;
  transition: all 0.25s; display: inline-block; border: 1px solid var(--cream);
}
.btn-primary:hover { background: var(--stone); border-color: var(--stone); color: var(--cream); }
.btn-primary.dark { background: var(--charcoal); color: var(--cream); border-color: var(--charcoal); }
.btn-primary.dark:hover { background: var(--forest); border-color: var(--forest); }
.btn-ghost {
  padding: 14px 36px; border: 1px solid rgba(247,244,239,0.4); color: rgba(247,244,239,0.85);
  font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 400;
  transition: all 0.25s; display: inline-block;
}
.btn-ghost:hover { border-color: var(--cream); color: var(--cream); }
.btn-ghost.dark { border-color: var(--stone); color: var(--charcoal); }
.btn-ghost.dark:hover { background: var(--charcoal); border-color: var(--charcoal); color: var(--cream); }

/* ── CTA BAND ── */
.cta-band { background: var(--charcoal); padding: 100px 40px; text-align: center; }
.cta-band h2 {
  font-family: var(--serif); font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 300; color: var(--cream); line-height: 1.15; margin-bottom: 20px;
}
.cta-band h2 em { font-style: italic; color: var(--stone); }
.cta-band p { color: rgba(247,244,239,0.55); font-size: 0.95rem; margin-bottom: 40px; max-width: 480px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
footer { background: var(--forest); color: var(--mist); padding: 72px 40px 48px; }
.footer-inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 48px; padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand-name { font-family: var(--serif); font-size: 1.5rem; font-weight: 300; letter-spacing: 0.03em; margin-bottom: 16px; color: var(--cream); }
.footer-tagline { font-size: 0.88rem; color: rgba(232,227,218,0.6); line-height: 1.6; max-width: 280px; }
.footer-col h4 { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--stone); margin-bottom: 20px; font-weight: 500; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col ul a { font-size: 0.88rem; color: rgba(232,227,218,0.7); transition: color 0.2s; }
.footer-col ul a:hover { color: var(--cream); }
.footer-bottom {
  max-width: var(--max); margin: 0 auto; padding-top: 32px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.78rem; color: rgba(232,227,218,0.4);
}
.footer-socials { display: flex; gap: 24px; }
.footer-socials a { color: rgba(232,227,218,0.5); transition: color 0.2s; font-size: 0.78rem; }
.footer-socials a:hover { color: var(--cream); }

/* ── HOME: HERO ── */
.hero {
  position: relative; height: 100vh; min-height: 620px;
  display: flex; align-items: flex-end; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(28,26,24,0.72) 0%, rgba(28,26,24,0.25) 45%, rgba(28,26,24,0.05) 75%);
}
.hero-content { position: relative; z-index: 2; padding: 0 56px 80px; width: 100%; }
.hero-eyebrow {
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(247,244,239,0.7); font-weight: 400; margin-bottom: 20px;
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(3rem, 6.5vw, 6.4rem);
  font-weight: 300; color: var(--cream); line-height: 1.02;
  letter-spacing: -0.02em; margin-bottom: 28px; max-width: 720px;
}
.hero-title em { font-style: italic; color: rgba(247,244,239,0.8); }
.hero-sub { font-size: 0.92rem; color: rgba(247,244,239,0.75); max-width: 400px; line-height: 1.7; margin-bottom: 40px; }
.hero-actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.scroll-hint {
  position: absolute; bottom: 36px; right: 56px; z-index: 2;
  display: flex; align-items: center; gap: 12px;
  color: rgba(247,244,239,0.5); font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase;
}
.scroll-line { width: 40px; height: 1px; background: rgba(247,244,239,0.3); position: relative; overflow: hidden; }
.scroll-line::after {
  content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: rgba(247,244,239,0.8);
  animation: scrollMove 2s ease-in-out infinite;
}
@keyframes scrollMove { 0%{left:-100%} 50%{left:0} 100%{left:100%} }

/* ── HOME: STRIP ── */
.services-strip {
  background: var(--charcoal); padding: 20px 40px;
  display: flex; align-items: center; justify-content: center;
  gap: 48px; flex-wrap: wrap;
}
.strip-item { display: flex; align-items: center; gap: 12px; color: rgba(247,244,239,0.55); font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; }
.strip-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--stone); }

/* ── HOME: ABOUT SNIPPET ── */
.about-snippet { padding: 120px 40px; }
.about-snippet-inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.about-snippet-text h2 {
  font-family: var(--serif); font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 300; line-height: 1.15; margin-bottom: 28px;
}
.about-snippet-text h2 em { font-style: italic; color: var(--stone); }
.about-snippet-text p { color: var(--mid); margin-bottom: 16px; font-size: 0.95rem; }
.link-subtle {
  font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--charcoal); font-weight: 500;
  border-bottom: 1px solid var(--stone); padding-bottom: 2px;
  transition: color 0.2s; display: inline-block; margin-top: 12px;
}
.link-subtle:hover { color: var(--stone); }
.about-snippet-visual { overflow: hidden; }
.about-snippet-visual img { width: 100%; height: auto; transition: transform 0.6s ease; }
.about-snippet-visual:hover img { transform: scale(1.02); }

/* ── HOME: PORTFOLIO TEASER ── */
.portfolio-teaser { padding: 0 40px 120px; }
.portfolio-teaser-inner { max-width: var(--max); margin: 0 auto; }
.pt-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; }
.pt-header h2 { font-family: var(--serif); font-weight: 300; font-size: clamp(2rem, 3.5vw, 3rem); line-height: 1.1; }
.view-all {
  font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--mid); font-weight: 400;
  transition: color 0.2s; border-bottom: 1px solid var(--mist); padding-bottom: 2px;
}
.view-all:hover { color: var(--charcoal); border-bottom-color: var(--stone); }
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.portfolio-card { position: relative; overflow: hidden; display: block; }
.portfolio-card .card-img { aspect-ratio: 3/4; overflow: hidden; }
.portfolio-card .card-img img { transition: transform 0.6s ease; }
.portfolio-card:hover .card-img img { transform: scale(1.04); }
.card-info { padding: 16px 0 8px; }
.card-title { font-family: var(--serif); font-weight: 400; font-size: 1.05rem; margin-bottom: 4px; }
.card-sub { font-size: 0.78rem; color: var(--mid); }

/* ── HOME: SERVICES PREVIEW ── */
.services-preview { background: var(--forest); padding: 120px 40px; }
.services-preview-inner { max-width: var(--max); margin: 0 auto; }
.sp-header { margin-bottom: 64px; }
.sp-header h2 { font-family: var(--serif); font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 300; color: var(--cream); line-height: 1.15; }
.services-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.service-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 48px 40px;
  transition: border-color 0.3s, background 0.3s;
}
.service-card:hover { border-color: rgba(196,180,154,0.3); background: rgba(255,255,255,0.06); }
.service-num { font-family: var(--serif); font-size: 0.9rem; color: var(--stone); margin-bottom: 24px; font-weight: 300; font-style: italic; }
.service-card h3 { font-family: var(--serif); font-size: 1.7rem; font-weight: 300; color: var(--cream); margin-bottom: 16px; line-height: 1.2; }
.service-card p { font-size: 0.88rem; color: rgba(232,227,218,0.6); line-height: 1.7; margin-bottom: 24px; }
.service-price { font-family: var(--serif); font-size: 1.3rem; color: var(--stone); font-weight: 300; font-style: italic; }
.service-detail { font-size: 0.78rem; color: rgba(232,227,218,0.4); margin-top: 4px; }

/* ── HOME: FULL-BLEED BREAK ── */
.photo-break { position: relative; overflow: hidden; }
.photo-break img { width: 100%; height: auto; display: block; }
.photo-break .break-caption {
  position: absolute; bottom: 40px; left: 56px; z-index: 2;
  color: var(--cream);
}
.photo-break .break-caption p { font-family: var(--serif); font-style: italic; font-size: clamp(1.3rem, 2.4vw, 2rem); font-weight: 300; max-width: 480px; line-height: 1.3; text-shadow: 0 2px 24px rgba(0,0,0,0.4); }
.photo-break::after { content:''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(28,26,24,0.4), transparent 50%); }
.photo-break .break-caption { z-index: 3; }

/* ── HOME: BLOG TEASER ── */
.blog-teaser { padding: 120px 40px; }
.blog-teaser-inner { max-width: var(--max); margin: 0 auto; }
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; margin-top: 48px; }
.blog-card { display: block; }
.blog-card .blog-img { aspect-ratio: 3/2; margin-bottom: 20px; overflow: hidden; }
.blog-card .blog-img img { transition: transform 0.5s ease; }
.blog-card:hover .blog-img img { transform: scale(1.04); }
.blog-date { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--stone); margin-bottom: 10px; }
.blog-card h3 { font-family: var(--serif); font-size: 1.25rem; font-weight: 400; line-height: 1.35; margin-bottom: 10px; }
.blog-card p { font-size: 0.86rem; color: var(--mid); line-height: 1.6; }

/* ── SERVICES PAGE ── */
.services-full { padding: 0 40px 80px; }
.services-full-inner { max-width: var(--max); margin: 0 auto; }
.service-block {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start; padding: 80px 0;
  border-top: 1px solid var(--mist);
}
.service-block.reverse .service-block-content { order: 2; }
.service-block.reverse .service-block-visual { order: 1; }
.sb-eyebrow { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--stone); margin-bottom: 20px; }
.service-block h2 { font-family: var(--serif); font-size: clamp(2rem,3.5vw,2.8rem); font-weight: 300; line-height: 1.15; margin-bottom: 24px; }
.service-block-content > p { color: var(--mid); font-size: 0.93rem; line-height: 1.75; margin-bottom: 16px; }
.what-you-get { margin: 32px 0; }
.what-you-get h4 { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--mid); margin-bottom: 16px; font-weight: 500; }
.what-you-get ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.what-you-get ul li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.9rem; }
.what-you-get ul li::before { content: '—'; color: var(--stone); flex-shrink: 0; margin-top: 1px; }
.price-box {
  background: var(--charcoal); color: var(--cream);
  padding: 32px 36px; margin-top: 36px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 24px;
}
.price-amount { font-family: var(--serif); font-size: 2rem; font-weight: 300; }
.price-detail { font-size: 0.82rem; color: rgba(247,244,239,0.5); margin-top: 4px; }
.btn-enquire {
  padding: 12px 28px; border: 1px solid rgba(247,244,239,0.3); color: var(--cream);
  font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 400;
  transition: all 0.2s; display: inline-block;
}
.btn-enquire:hover { background: var(--cream); color: var(--charcoal); }
.visual-stack { display: flex; flex-direction: column; gap: 12px; }
.visual-stack > div { overflow: hidden; }
.visual-stack img { width: 100%; height: auto; }
.visual-stack img { transition: transform 0.6s ease; }
.visual-stack > div:hover img { transform: scale(1.04); }

/* ── ID FIRMS ── */
.id-firms-section { padding: 100px 40px; background: var(--forest); }
.id-firms-inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.id-firms-inner h2 { font-family: var(--serif); font-size: clamp(2rem,3.5vw,3rem); font-weight: 300; color: var(--cream); line-height: 1.15; margin-bottom: 24px; }
.id-firms-inner h2 em { font-style: italic; color: var(--stone); }
.id-firms-inner > div > p { color: rgba(232,227,218,0.6); font-size: 0.93rem; line-height: 1.75; margin-bottom: 16px; }
.id-perks { margin-top: 32px; display: flex; flex-direction: column; gap: 16px; }
.id-perk { display: flex; gap: 16px; align-items: flex-start; padding: 20px 24px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06); }
.id-perk-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
.id-perk h4 { font-size: 0.88rem; font-weight: 500; color: var(--cream); margin-bottom: 4px; }
.id-perk p { font-size: 0.82rem; color: rgba(232,227,218,0.5); margin: 0; line-height: 1.55; }
.id-firms-visual { display: flex; flex-direction: column; gap: 12px; }
.id-firms-visual > div { overflow: hidden; }
.id-firms-visual img { width: 100%; height: auto; }

/* ── PORTFOLIO PAGE ── */
.portfolio-filters {
  padding: 0 40px 48px; max-width: var(--max); margin: 0 auto;
  display: flex; gap: 8px; flex-wrap: wrap;
}
.filter-btn {
  padding: 8px 20px; border: 1px solid var(--mist);
  color: var(--mid); font-size: 0.75rem;
  letter-spacing: 0.1em; text-transform: uppercase; font-weight: 400;
  transition: all 0.2s;
}
.filter-btn:hover, .filter-btn.active { background: var(--charcoal); color: var(--cream); border-color: var(--charcoal); }
.portfolio-masonry {
  padding: 0 40px 80px; max-width: var(--max); margin: 0 auto;
  columns: 3; column-gap: 16px;
}
.masonry-item { break-inside: avoid; margin-bottom: 16px; position: relative; overflow: hidden; display: block; }
.masonry-item img { width: 100%; height: auto; transition: transform 0.5s ease; }
.masonry-item:hover img { transform: scale(1.03); }
.masonry-item .overlay {
  position: absolute; inset: 0;
  background: rgba(28,26,24,0); transition: background 0.3s;
  display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end; padding: 24px;
}
.masonry-item:hover .overlay { background: rgba(28,26,24,0.4); }
.overlay-text { opacity: 0; transform: translateY(8px); transition: all 0.3s; color: var(--cream); }
.masonry-item:hover .overlay-text { opacity: 1; transform: translateY(0); }
.overlay-text h4 { font-family: var(--serif); font-size: 1.1rem; font-weight: 400; }
.overlay-text span { font-size: 0.75rem; color: rgba(247,244,239,0.7); letter-spacing: 0.08em; }

/* ── ABOUT PAGE ── */
.about-intro { padding: 0 40px 100px; }
.about-intro-inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
  padding-top: 40px;
}
.about-intro-text p { color: var(--mid); font-size: 0.95rem; line-height: 1.8; margin-bottom: 20px; }
.pullquote {
  font-family: var(--serif); font-size: 1.5rem; font-weight: 300; font-style: italic;
  color: var(--charcoal); border-left: 2px solid var(--stone); padding-left: 24px;
  line-height: 1.4; margin: 0 0 36px;
}
.about-intro-visual { position: relative; }
.about-main-img { overflow: hidden; }
.about-main-img img { width: 100%; height: auto; }
.about-accent {
  position: absolute; bottom: -24px; right: -24px;
  width: 200px; height: 200px; background: var(--charcoal);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 24px;
}
.about-accent .num { font-family: var(--serif); font-size: 2.8rem; font-weight: 300; color: var(--stone); line-height: 1; }
.about-accent p { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(247,244,239,0.6); margin-top: 8px; }
.about-team { padding: 100px 40px; background: var(--mist); }
.about-team-inner { max-width: var(--max); margin: 0 auto; }
.about-team h2 { font-family: var(--serif); font-size: clamp(2rem,3.5vw,3rem); font-weight: 300; line-height: 1.15; margin-bottom: 16px; }
.about-team-inner > p { color: var(--mid); max-width: 560px; margin-bottom: 56px; font-size: 0.93rem; line-height: 1.75; }
.team-brands { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.brand-card { background: var(--cream); padding: 40px; border: 1px solid var(--mist); transition: border-color 0.3s; }
.brand-card:hover { border-color: var(--stone); }
.brand-card h3 { font-family: var(--serif); font-size: 1.4rem; font-weight: 400; margin-bottom: 12px; }
.brand-card p { color: var(--mid); font-size: 0.88rem; line-height: 1.65; }
.brand-link {
  display: inline-block; margin-top: 20px;
  font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase;
  border-bottom: 1px solid var(--stone); padding-bottom: 2px; font-weight: 500;
}
.about-values { padding: 100px 40px; }
.about-values-inner { max-width: var(--max); margin: 0 auto; }
.about-values h2 { font-family: var(--serif); font-size: clamp(2rem,3.5vw,2.8rem); font-weight: 300; margin-bottom: 56px; max-width: 480px; line-height: 1.2; }
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 40px; }
.value-num { font-family: var(--serif); font-size: 0.85rem; color: var(--stone); margin-bottom: 16px; font-style: italic; }
.value-item h3 { font-family: var(--serif); font-size: 1.2rem; font-weight: 400; margin-bottom: 12px; }
.value-item p { color: var(--mid); font-size: 0.88rem; line-height: 1.65; }

/* ── JOURNAL PAGE ── */
.blog-hero-post { padding: 0 40px 80px; max-width: var(--max); margin: 0 auto; }
.blog-hero-post .featured-img { margin-bottom: 36px; position: relative; overflow: hidden; }
.blog-hero-post .featured-img img { width: 100%; height: auto; }
.featured-badge {
  position: absolute; top: 24px; left: 24px; z-index: 2;
  background: var(--charcoal); color: var(--cream);
  font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 6px 14px; font-weight: 500;
}
.blog-hero-post h2 { font-family: var(--serif); font-size: clamp(2rem,3.5vw,3rem); font-weight: 300; line-height: 1.15; max-width: 680px; margin-bottom: 16px; }
.blog-hero-post > p { color: var(--mid); max-width: 560px; font-size: 0.93rem; line-height: 1.75; }
.blog-list { padding: 0 40px 120px; }
.blog-list-inner { max-width: var(--max); margin: 0 auto; }
.blog-list h3 { font-family: var(--serif); font-weight: 300; font-size: 1.2rem; color: var(--mid); margin-bottom: 40px; padding-bottom: 20px; border-bottom: 1px solid var(--mist); }
.blog-list-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 40px; }
.blog-list-card .blog-img { aspect-ratio: 3/2; overflow: hidden; margin-bottom: 20px; }
.blog-list-card .blog-img img { transition: transform 0.5s ease; }
.blog-list-card:hover .blog-img img { transform: scale(1.04); }
.blog-list-card h4 { font-family: var(--serif); font-size: 1.15rem; font-weight: 400; line-height: 1.35; margin-bottom: 10px; }
.blog-list-card p { font-size: 0.85rem; color: var(--mid); line-height: 1.6; }
.blog-cat { display: inline-block; margin-bottom: 8px; font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--stone); }

/* ── CONTACT PAGE ── */
.contact-layout {
  padding: 40px 40px 120px; max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
}
.contact-info h2 { font-family: var(--serif); font-size: clamp(2rem,3vw,2.6rem); font-weight: 300; line-height: 1.2; margin-bottom: 20px; }
.contact-info h2 em { font-style: italic; color: var(--stone); }
.contact-info > p { color: var(--mid); font-size: 0.93rem; line-height: 1.75; margin-bottom: 48px; }
.contact-methods { display: flex; flex-direction: column; gap: 16px; margin-bottom: 48px; }
.contact-method {
  display: flex; gap: 16px; align-items: center;
  padding: 20px 24px; border: 1px solid var(--mist); background: var(--cream);
  transition: border-color 0.2s, background 0.2s;
}
.contact-method:hover { border-color: var(--stone); background: #F2EDE5; }
.cm-icon { width: 40px; height: 40px; background: var(--mist); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; border-radius: 50%; }
.cm-label { font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mid); margin-bottom: 3px; }
.cm-value { font-size: 0.93rem; font-weight: 400; }
.contact-note { font-size: 0.82rem; color: var(--mid); line-height: 1.65; padding: 20px 24px; background: var(--mist); border-left: 2px solid var(--stone); }
.contact-form-side h3 { font-family: var(--serif); font-size: 1.5rem; font-weight: 300; margin-bottom: 8px; }
.contact-form-side > p { color: var(--mid); font-size: 0.85rem; margin-bottom: 32px; line-height: 1.6; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mid); margin-bottom: 8px; font-weight: 500; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 14px 16px;
  border: 1px solid var(--mist); background: var(--cream);
  font-family: var(--sans); font-size: 0.9rem; color: var(--charcoal);
  outline: none; transition: border-color 0.2s;
  appearance: none; border-radius: 0;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--stone); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237A7268' fill='none' stroke-width='1.5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit {
  width: 100%; padding: 16px; background: var(--charcoal); color: var(--cream);
  font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500;
  transition: background 0.2s; margin-top: 8px;
}
.form-submit:hover { background: var(--forest); }
.form-success { display: none; text-align: center; padding: 40px; background: var(--mist); margin-top: 20px; }
.form-success.show { display: block; }
.form-success h4 { font-family: var(--serif); font-size: 1.4rem; font-weight: 300; margin-bottom: 8px; }
.form-success p { color: var(--mid); font-size: 0.88rem; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 0 24px; }
  .nav-links, nav > .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-content { padding: 0 28px 56px; }
  .scroll-hint { display: none; }
  .about-snippet-inner, .about-intro-inner, .contact-layout,
  .service-block, .id-firms-inner, .services-cards, .team-brands { grid-template-columns: 1fr; gap: 40px; }
  .service-block.reverse .service-block-content { order: unset; }
  .service-block.reverse .service-block-visual { order: unset; }
  .about-accent { display: none; }
    .blog-grid, .blog-list-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; gap: 32px; }
  .photo-break .break-caption { left: 28px; }
  .page-hero, .about-snippet, .portfolio-teaser, .services-preview, .blog-teaser,
  .cta-band, .services-full, .id-firms-section, .about-intro, .about-team,
  .about-values, .blog-hero-post, .blog-list, .contact-layout, .portfolio-filters,
  .portfolio-masonry { padding-left: 24px; padding-right: 24px; }
}
@media (max-width: 600px) {
    .blog-grid, .blog-list-grid { grid-template-columns: 1fr; }
  .services-strip { gap: 20px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  }

/* ── HOME: GALLERY (natural ratios, no cropping) ── */
.gallery-section { padding: 0 40px 120px; }
.gallery-inner { max-width: var(--max); margin: 0 auto; }
.gallery-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; flex-wrap: wrap; gap: 16px; }
.gallery-header h2 { font-family: var(--serif); font-weight: 300; font-size: clamp(2rem, 3.5vw, 3rem); line-height: 1.1; }
.gallery-masonry { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; align-items: start; }
.gallery-item { overflow: hidden; position: relative; }
.gallery-item img { width: 100%; height: auto; display: block; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.02); }
.gallery-item .g-caption { padding: 14px 0 6px; }
.gallery-item .g-caption h4 { font-family: var(--serif); font-weight: 400; font-size: 1.02rem; }
.gallery-item .g-caption span { font-size: 0.76rem; color: var(--mid); letter-spacing: 0.04em; }

