/*
Theme Name: Groom Guy
Theme URI: https://groomguy.com
Author: AJLabs
Description: Custom theme for Groom Guy — Washington DC luxury men's grooming
Version: 5.5.0
License: GNU General Public License v2 or later
Text Domain: groom-guy
*/

/* ═══════════════════════════════════════════════════
   FONTS — Sackers Gothic (licensed, self-hosted)
═══════════════════════════════════════════════════ */
@font-face {
  font-family: 'Sackers Gothic';
  src: url('fonts/sackers-gothic-light.woff2') format('woff2');
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Sackers Gothic';
  src: url('fonts/sackers-gothic-medium.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Sackers Gothic';
  src: url('fonts/sackers-gothic-heavy.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}

/* ═══════════════════════════════════════════════════
   VARIABLES
═══════════════════════════════════════════════════ */
:root {
  --black:      #080808;
  --dark:       #111111;
  --white:      #ffffff;
  --off-white:  #f5f5f3;
  --lt-grey:    #e8e8e8;
  --grey:       #999999;
  --muted:      #666666;
  --trans:      0.25s ease;
}

/* ═══════════════════════════════════════════════════
   RESET / BASE
═══════════════════════════════════════════════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html  { scroll-behavior: smooth; overflow-x: hidden; }
body  {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img   { max-width: 100%; display: block; }
a     { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

body.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) { body.admin-bar .site-header { top: 46px; } }

/* ═══════════════════════════════════════════════════
   LAYOUT
═══════════════════════════════════════════════════ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2.5rem; }

/* ═══════════════════════════════════════════════════
   TYPOGRAPHY PRIMITIVES
═══════════════════════════════════════════════════ */
.eyebrow {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 1rem;
}
.eyebrow-light { color: rgba(255,255,255,0.35); }
.eyebrow-dark  { color: var(--grey); }

/* ═══════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════ */
.btn-black {
  display: inline-block;
  background: var(--black); color: var(--white);
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.95rem 2.25rem;
  border: 1.5px solid var(--black);
  transition: background var(--trans), color var(--trans);
}
.btn-black:hover { background: transparent; color: var(--black); }

.btn-outline-black {
  display: inline-block;
  background: transparent; color: var(--black);
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.95rem 2.25rem;
  border: 1.5px solid var(--black);
  transition: background var(--trans), color var(--trans);
}
.btn-outline-black:hover { background: var(--black); color: var(--white); }

.btn-white {
  display: inline-block;
  background: var(--white); color: var(--black);
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.95rem 2.25rem;
  border: 1.5px solid var(--white);
  transition: background var(--trans), color var(--trans);
}
.btn-white:hover { background: transparent; color: var(--white); }

.btn-outline-white {
  display: inline-block;
  background: transparent; color: var(--white);
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.95rem 2.25rem;
  border: 1.5px solid rgba(255,255,255,0.35);
  transition: border-color var(--trans), background var(--trans);
}
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,0.07); }

/* ═══════════════════════════════════════════════════
   HEADER
═══════════════════════════════════════════════════ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: transparent;
  transition: background var(--trans), backdrop-filter var(--trans);
}
.site-header.scrolled {
  background: rgba(8,8,8,0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
/* Two-column header matching the 42/58 hero split */
.header-inner {
  display: grid;
  grid-template-columns: 42% 1fr;
  align-items: center;
  height: 84px;
}
/* Logo pinned to the far left of the header */
.site-logo {
  display: flex; align-items: center; justify-content: flex-start;
}
.site-logo img { height: 46px; width: auto; filter: brightness(0) invert(1); }

/* Nav right-aligned inside the 58% right column */
.primary-nav {
  display: flex; align-items: center; justify-content: flex-end; gap: 0;
}
.primary-nav a {
  color: rgba(255,255,255,0.65);
  font-family: 'Sackers Gothic', 'Inter', sans-serif;
  font-size: 0.74rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.55rem 1.1rem;
  transition: color var(--trans); white-space: nowrap;
}
.primary-nav a:hover { color: var(--white); }

.nav-book {
  color: var(--white) !important;
  border: 1px solid rgba(255,255,255,0.45) !important;
  padding: 0.55rem 1.4rem !important;
  margin-left: 0.75rem;
  font-family: 'Sackers Gothic', 'Inter', sans-serif;
  font-size: 0.74rem !important; letter-spacing: 0.14em;
  transition: border-color var(--trans), background var(--trans) !important;
}
.nav-book:hover { border-color: var(--white) !important; background: rgba(255,255,255,0.08) !important; }

/* Hamburger — sits in right column of header grid */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  padding: 4px; grid-column: 2; justify-self: end;
}
.nav-toggle span {
  display: block; width: 22px; height: 1.5px;
  background: var(--white); transition: var(--trans);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav overlay */
.mobile-nav {
  position: fixed; inset: 0; z-index: 99;
  background: var(--black);
  display: flex; flex-direction: column;
  justify-content: center; align-items: center; gap: 0;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-nav.open { opacity: 1; pointer-events: all; }
.mobile-nav a {
  color: var(--white);
  font-family: 'Sackers Gothic', 'Inter', sans-serif;
  font-size: 1.6rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.7rem 0;
  transition: opacity var(--trans);
}
.mobile-nav a:hover { opacity: 0.4; }
.mobile-nav-cta {
  font-family: 'Sackers Gothic', 'Inter', sans-serif !important;
  font-size: 0.74rem !important; font-weight: 500 !important;
  letter-spacing: 0.14em !important; text-transform: uppercase !important;
  border: 1.5px solid rgba(255,255,255,0.3) !important;
  padding: 0.8rem 2rem !important; margin-top: 2.5rem !important;
}
.mobile-nav-footer {
  position: absolute; bottom: 2.5rem;
  font-size: 0.72rem; color: rgba(255,255,255,0.25);
  text-align: center; line-height: 1.65; letter-spacing: 0.04em;
}

/* ═══════════════════════════════════════════════════
   HERO — full bleed photo, gradient left overlay
═══════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100svh; min-height: 640px;
  overflow: hidden;
  display: flex; flex-direction: column;
}

/* Full-bleed background photo */
.hero-panel-right {
  position: absolute; inset: 0; z-index: 0;
}
.hero-panel-right img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  filter: brightness(0.92);
  animation: gg-hero-zoom 18s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes gg-hero-zoom {
  from { transform: scale(1.02) translate(0, 0); }
  to   { transform: scale(1.22) translate(-1.8%, -1.2%); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-panel-right img { animation: none; }
}
/* Vignette — heavier in center so text is legible over bright photo areas */
.hero-panel-right::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(rgba(8,8,8,0.55) 0%, rgba(8,8,8,0.44) 35%, rgba(8,8,8,0.44) 65%, rgba(8,8,8,0.62) 100%);
}

/* Text panel — vertically and horizontally centered */
.hero-panel-left {
  position: relative; z-index: 1;
  flex: 1;
  display: flex; align-items: center; justify-content: center;
  padding: 5rem 2.5rem 2.5rem;
  width: 100%;
  text-align: center;
}
.hero-content {
  max-width: 860px;
}

.hero-location {
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.5rem;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}

.hero-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(5.5rem, 9vw, 11rem);
  font-weight: 300; line-height: 0.92;
  color: var(--white); letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 32px rgba(0,0,0,0.55);
}
/* Concierge-led hero: bold three-word treatment, one line on desktop */
.hero-h1--concierge {
  font-size: clamp(2.4rem, 7vw, 6.5rem);
  font-weight: 500;
  line-height: 1.0;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
/* Phones: wrap (one line would be too small to read) */
@media (max-width: 760px) {
  .hero-h1--concierge { white-space: normal; font-size: clamp(2.6rem, 11vw, 4rem); }
}
.hero-h1 em { font-style: italic; font-weight: 400; }

.hero-sub {
  font-size: 0.9rem; line-height: 1.65;
  color: rgba(255,255,255,0.95);
  max-width: none; margin: 0 auto 2.25rem;
  white-space: nowrap;
  text-shadow: 0 2px 24px rgba(0,0,0,0.95), 0 0 60px rgba(0,0,0,0.85);
}
@media (max-width: 760px) {
  .hero-sub { white-space: normal; max-width: 440px; font-size: 0.85rem; }
}
.hero-actions { display: flex; align-items: center; justify-content: center; gap: 1.5rem; flex-wrap: wrap; }

/* Hero-specific buttons — refined, editorial */
.hero-btn-primary {
  display: inline-block;
  background: transparent; color: var(--white);
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 0.85rem 2rem;
  border: 1px solid rgba(255,255,255,0.7);
  transition: background var(--trans), border-color var(--trans), color var(--trans);
}
.hero-btn-primary:hover {
  background: var(--white); color: var(--black);
  border-color: var(--white);
}
.hero-btn-ghost {
  display: inline-block;
  background: transparent; color: rgba(255,255,255,0.65);
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding-bottom: 0.2rem;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  transition: color var(--trans), border-color var(--trans);
}
.hero-btn-ghost:hover { color: var(--white); border-bottom-color: rgba(255,255,255,0.8); }

/* Press bar — semi-transparent so photo bleeds through */
.hero-press-bar {
  position: relative; z-index: 1;
  background: rgba(8,8,8,0.52);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255,0.05);
}
.hero-press-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
.press-col {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 1.6rem 2rem;
  border-right: 1px solid rgba(255,255,255,0.08);
  gap: 0.35rem;
}
.press-col:last-child { border-right: none; }
.press-pub-label {
  font-size: 0.56rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.22);
}
.press-forbes {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.5rem, 2.2vw, 2.4rem);
  font-weight: 800; color: var(--white);
  letter-spacing: -0.02em; line-height: 1;
}
.press-nyt {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.65rem, 2.4vw, 2.75rem);
  font-weight: 500; font-style: italic;
  color: var(--white); line-height: 1;
}
.press-gq {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2.2rem, 3.2vw, 3.6rem);
  font-weight: 900; color: var(--white);
  letter-spacing: -0.07em; line-height: 1;
}

/* ═══════════════════════════════════════════════════
   ABOUT SECTION
═══════════════════════════════════════════════════ */
.about-section {
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center;
  background: var(--white);
}
.about-video-col {
  display: flex; align-items: center; justify-content: center;
  padding: 4rem 3rem 4rem 4rem;
}
.about-video-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.13);
}
.about-video-wrap iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: none; pointer-events: none;
}
.about-content-col {
  display: flex; align-items: center;
  padding: 5rem 5rem;
}
.about-content-inner { max-width: 460px; }
.about-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 4vw, 4.5rem);
  font-weight: 300; line-height: 0.95;
  color: var(--black); letter-spacing: -0.02em;
  margin: 0.5rem 0 0;
}
.about-heading em { font-style: italic; font-weight: 400; }
.about-rule {
  width: 36px; height: 1.5px;
  background: var(--lt-grey); margin-bottom: 1.75rem;
}
.about-body {
  font-size: 0.9rem; line-height: 1.65;
  color: var(--muted); margin-bottom: 1rem;
}
.about-stats {
  display: flex; align-items: stretch;
  border-top: 1px solid var(--lt-grey);
  border-bottom: 1px solid var(--lt-grey);
  margin: 1.75rem 0;
}
.about-stat { flex: 1; text-align: center; padding: 1rem 0; }
.about-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem; font-weight: 600;
  color: var(--black); line-height: 1; margin-bottom: 0.3rem;
}
.about-stat-lbl {
  font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--grey);
}
.about-stat-div { width: 1px; background: var(--lt-grey); margin: 1rem 0; }
.about-cta {
  display: inline-block;
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--black); padding-bottom: 2px;
  border-bottom: 1px solid rgba(0,0,0,0.2);
  transition: letter-spacing var(--trans), border-color var(--trans);
}
.about-cta:hover { letter-spacing: 0.22em; border-bottom-color: var(--black); }

/* ═══════════════════════════════════════════════════
   SERVICES SECTION
═══════════════════════════════════════════════════ */
.services-section { background: var(--black); padding: 9rem 0; }
.services-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 4rem; gap: 2rem;
}
.services-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5vw, 5.5rem);
  font-weight: 300; line-height: 0.95;
  color: var(--white); letter-spacing: -0.02em;
  margin: 0.75rem 0 0;
}
.services-heading em { font-style: italic; font-weight: 400; }
.services-view-all {
  display: inline-block;
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  white-space: nowrap;
  transition: color var(--trans), border-color var(--trans);
}
.services-view-all:hover { color: var(--white); border-bottom-color: rgba(255,255,255,0.5); }
.services-list { border-top: 1px solid rgba(255,255,255,0.07); }
.services-row {
  display: grid; grid-template-columns: 5rem 1fr auto;
  align-items: center; gap: 3rem;
  padding: 3rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: padding-left var(--trans);
}
.services-row:hover { padding-left: 0.75rem; }
.services-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem; font-weight: 300;
  color: rgba(255,255,255,0.07); line-height: 1;
}
.services-body {}
.services-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  font-weight: 400; line-height: 1.15;
  color: var(--white); margin-bottom: 0.6rem;
}
.services-desc {
  font-size: 0.875rem; line-height: 1.6;
  color: rgba(255,255,255,0.32); max-width: 520px;
}
.services-link {
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.35); white-space: nowrap;
  align-self: center; padding-bottom: 1px;
  border-bottom: 1px solid transparent;
  transition: color var(--trans), border-color var(--trans);
}
.services-link:hover { color: var(--white); border-bottom-color: rgba(255,255,255,0.35); }

/* ═══════════════════════════════════════════════════
   QUOTE SECTION
═══════════════════════════════════════════════════ */
.quote-section {
  position: relative; overflow: hidden;
  padding: 11rem 0; background: var(--black);
}
.quote-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.14;
}
.quote-content {
  position: relative; z-index: 1;
  text-align: center; max-width: 820px;
}
.quote-rule {
  width: 1.5px; height: 56px;
  background: rgba(255,255,255,0.18);
  margin: 0 auto 2.75rem;
}
.quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.75rem, 3.5vw, 2.9rem);
  font-weight: 300; font-style: italic;
  color: var(--white); line-height: 1.55; border: none;
  letter-spacing: 0.01em;
}
.quote-attr {
  margin-top: 1.75rem;
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}

/* ═══════════════════════════════════════════════════
   LOCATIONS SECTION
═══════════════════════════════════════════════════ */
.loc-section { background: var(--white); padding: 9rem 0; }
.loc-header { margin-bottom: 3.5rem; }
.loc-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 4vw, 3.75rem);
  font-weight: 400; line-height: 1.08;
  color: var(--black); margin: 0.5rem 0 0;
}
.loc-heading em { font-style: italic; }
.loc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.loc-card { background: var(--off-white); overflow: hidden; }
.loc-card-img { aspect-ratio: 4/3; overflow: hidden; }
.loc-card-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  filter: grayscale(15%);
  transition: transform 0.7s ease;
}
.loc-card:hover .loc-card-img img { transform: scale(1.04); }
.loc-card-body { padding: 2rem 2rem 2.5rem; }
.loc-badge {
  display: inline-block;
  font-size: 0.58rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  background: var(--black); color: var(--white);
  padding: 0.22rem 0.7rem; margin-bottom: 0.9rem;
}
.loc-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem; font-weight: 500;
  color: var(--black); margin-bottom: 0.4rem;
}
.loc-addr { font-size: 0.84rem; line-height: 1.65; color: var(--muted); margin-bottom: 0.7rem; }
.loc-hours {
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.07em; color: var(--grey);
}

/* ═══════════════════════════════════════════════════
   SKILLS SECTION
═══════════════════════════════════════════════════ */
.skills-section { background: var(--black); }
.skills-grid {
  display: grid; grid-template-columns: 1fr 1fr; min-height: 660px;
}
.skills-photo { overflow: hidden; }
.skills-photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  filter: brightness(0.7) grayscale(10%);
}
.skills-content {
  padding: 7rem 5rem;
  display: flex; flex-direction: column; justify-content: center;
}
.skills-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 4vw, 3.75rem);
  font-weight: 400; line-height: 1.08;
  color: var(--white); margin: 0.5rem 0 0.65rem;
}
.skills-heading em { font-style: italic; }
.skills-sub {
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.6); margin-bottom: 1.75rem;
}
.skills-body {
  font-size: 0.9rem; line-height: 1.65;
  color: rgba(255,255,255,0.82); margin-bottom: 1rem;
}
.skills-content .btn-outline-white { align-self: flex-start; }

/* ═══════════════════════════════════════════════════
   JOURNAL SECTION
═══════════════════════════════════════════════════ */
.journal-section { background: var(--black); padding: 9rem 0; }
.journal-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 0.75rem; gap: 2rem;
}
.journal-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 300; line-height: 0.95;
  color: var(--white); letter-spacing: -0.02em;
  margin: 0.5rem 0 0;
}
.journal-heading em { font-style: italic; font-weight: 400; }
.journal-view-all {
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.3); padding-bottom: 2px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  white-space: nowrap; align-self: flex-end;
  transition: color var(--trans), border-color var(--trans);
}
.journal-view-all:hover { color: var(--white); border-bottom-color: rgba(255,255,255,0.5); }
.journal-sub {
  font-size: 0.82rem; color: rgba(255,255,255,0.3);
  margin: 1rem 0 3rem; padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.journal-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 3rem 2.5rem; }
.journal-card { display: block; overflow: hidden; }
.journal-card-img {
  aspect-ratio: 16/9; overflow: hidden;
  background: rgba(255,255,255,0.05);
  margin-bottom: 1.1rem;
}
.journal-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.journal-card:hover .journal-card-img img { transform: scale(1.03); }
.journal-card-placeholder { width: 100%; height: 100%; background: rgba(255,255,255,0.05); }
.journal-card-body { padding: 0; }
.journal-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem; font-weight: 500;
  color: var(--white); line-height: 1.25; margin-bottom: 0.55rem;
}
.journal-card:hover .journal-card-title { opacity: 0.75; }
.journal-card-meta {
  font-size: 0.72rem; color: rgba(255,255,255,0.3);
  letter-spacing: 0.04em;
}
.journal-footer {
  text-align: center; margin-top: 4rem;
  padding-top: 3rem; border-top: 1px solid rgba(255,255,255,0.07);
}
.journal-read-more {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem; font-weight: 400; font-style: italic;
  color: rgba(255,255,255,0.5);
  transition: color var(--trans);
}
.journal-read-more:hover { color: var(--white); }
.journal-empty {
  grid-column: 1/-1; text-align: center;
  padding: 5rem 0; color: rgba(255,255,255,0.2);
  font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 300;
}

/* ═══════════════════════════════════════════════════
   FEATURED IN
═══════════════════════════════════════════════════ */
.featured-section { background: var(--white); padding: 6.5rem 0; }
.featured-header { margin-bottom: 3rem; }
.featured-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 3.5vw, 3.25rem);
  font-weight: 400; line-height: 1.08;
  color: var(--black); margin: 0.5rem 0 0;
}
.featured-heading em { font-style: italic; }
.featured-logos {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  border-top: 1px solid var(--lt-grey);
  border-bottom: 1px solid var(--lt-grey);
}
.featured-logo {
  display: flex; align-items: center; justify-content: center;
  padding: 2.75rem 1rem;
  border-right: 1px solid var(--lt-grey);
}
.featured-logo:last-child { border-right: none; }
.feat-forbes {
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem; font-weight: 800;
  color: var(--black); letter-spacing: -0.01em;
}
.feat-nyt {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem; font-weight: 600; font-style: italic;
  color: var(--black);
}
.feat-gq {
  font-family: 'Inter', sans-serif;
  font-size: 2.2rem; font-weight: 900;
  color: var(--black); letter-spacing: -0.06em;
}
.feat-inc {
  font-family: 'Inter', sans-serif;
  font-size: 1.9rem; font-weight: 800;
  color: var(--black); letter-spacing: -0.04em;
}

/* ═══════════════════════════════════════════════════
   CONTACT HOMEPAGE SECTION
═══════════════════════════════════════════════════ */
.contact-hp-section { background: var(--off-white); padding: 9rem 0; }
.contact-hp-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 8rem; align-items: start;
}
.contact-hp-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 4.5vw, 5rem);
  font-weight: 700; line-height: 1;
  color: var(--black); letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.contact-hp-heading em {
  font-style: normal; font-weight: 300;
  -webkit-text-stroke: 1px rgba(8,8,8,0.55);
  color: transparent;
}
.contact-hp-rule {
  width: 32px; height: 1.5px;
  background: rgba(8,8,8,0.2);
  margin-bottom: 1.25rem;
}
.contact-hp-sub {
  font-size: 0.875rem; color: var(--muted);
  line-height: 1.7; margin-bottom: 2.5rem;
}
.contact-hp-details {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.75rem 2rem;
}
.contact-hp-item { display: flex; align-items: flex-start; gap: 0.9rem; }
.contact-hp-icon {
  color: var(--muted); flex-shrink: 0; margin-top: 2px;
}
.contact-hp-item-label {
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 0.25rem;
}
.contact-hp-item-val {
  font-size: 0.84rem; color: var(--black); line-height: 1.6;
}
.contact-hp-item-val a { color: inherit; transition: color var(--trans); }
.contact-hp-item-val a:hover { color: var(--muted); }
/* Form */
.contact-hp-form { display: flex; flex-direction: column; gap: 0; }
.contact-hp-row { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.contact-hp-field { margin-bottom: 2rem; }
.contact-hp-field input,
.contact-hp-field textarea {
  width: 100%; background: transparent;
  border: none; border-bottom: 1px solid rgba(8,8,8,0.18);
  color: var(--black);
  font-family: 'Inter', sans-serif; font-size: 0.875rem;
  padding: 0.6rem 0; outline: none;
  transition: border-color var(--trans);
  resize: none;
}
.contact-hp-field input::placeholder,
.contact-hp-field textarea::placeholder { color: rgba(8,8,8,0.35); }
.contact-hp-field input:focus,
.contact-hp-field textarea:focus { border-bottom-color: rgba(8,8,8,0.55); }
.contact-hp-submit-row { text-align: right; margin-top: 0.5rem; }
.contact-hp-submit {
  background: none; border: none; cursor: pointer;
  color: var(--black);
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem; font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0; transition: opacity var(--trans);
}
.contact-hp-submit:hover { opacity: 0.5; }
.contact-hp-book {
  margin-top: 5rem; padding-top: 3rem;
  border-top: 1px solid rgba(8,8,8,0.1);
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
}
.contact-hp-book-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 300; font-style: italic;
  color: var(--black); margin-bottom: 0.3rem;
}
.contact-hp-book-sub { font-size: 0.82rem; color: var(--muted); }

/* ═══════════════════════════════════════════════════
   NEWSLETTER
═══════════════════════════════════════════════════ */
.newsletter-section { background: var(--black); padding: 8.5rem 0; }
.newsletter-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6rem; align-items: center;
}
.newsletter-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 400; line-height: 1.08;
  color: var(--white); margin: 0.5rem 0 1rem;
}
.newsletter-heading em { font-style: italic; }
.newsletter-sub {
  font-size: 0.875rem; line-height: 1.65;
  color: rgba(255,255,255,0.35);
}
.newsletter-input-wrap { display: flex; }
.newsletter-input {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1); border-right: none;
  color: var(--white); font-family: 'Inter', sans-serif;
  font-size: 0.85rem; padding: 0.875rem 1.25rem;
  outline: none; transition: border-color var(--trans);
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.22); }
.newsletter-input:focus { border-color: rgba(255,255,255,0.3); }
.newsletter-btn {
  background: var(--white); color: var(--black);
  border: 1px solid var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0 1.6rem; cursor: pointer; white-space: nowrap;
  transition: background var(--trans), color var(--trans);
}
.newsletter-btn:hover { background: transparent; color: var(--white); }
.newsletter-fine {
  font-size: 0.68rem; color: rgba(255,255,255,0.18);
  margin-top: 0.75rem;
}

/* ═══════════════════════════════════════════════════
   CTA
═══════════════════════════════════════════════════ */
.cta-section {
  background: var(--black); padding: 10rem 0;
  text-align: center; position: relative; overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.cta-bg-text {
  position: absolute;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(18rem, 30vw, 28rem);
  font-weight: 700; line-height: 1;
  color: rgba(255,255,255,0.02);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  pointer-events: none; user-select: none; white-space: nowrap;
}
.cta-inner { position: relative; z-index: 1; }
.cta-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5.5vw, 5.75rem);
  font-weight: 300; line-height: 1.05;
  color: var(--white); letter-spacing: -0.01em;
  margin: 0.75rem 0 1.25rem;
}
.cta-heading em { font-style: italic; font-weight: 400; }
.cta-sub {
  font-size: 0.875rem; line-height: 1.6;
  color: rgba(255,255,255,0.3);
  max-width: 400px; margin: 0 auto 2.75rem;
}
.cta-actions { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════ */
.site-footer { background: var(--dark); border-top: 1px solid rgba(255,255,255,0.05); }
.footer-main { padding: 4.5rem 0; }
.footer-row {
  display: grid; grid-template-columns: 2fr 1.5fr 1.5fr 1fr;
  gap: 3rem; align-items: start;
}
.footer-logo { height: 30px; width: auto; filter: brightness(0) invert(1); margin-bottom: 1.1rem; }
.footer-copy { font-size: 0.72rem; color: rgba(255,255,255,0.7); line-height: 1.6; }
.footer-contact-line {
  display: block; font-size: 0.82rem;
  color: rgba(255,255,255,0.92); line-height: 1.7;
  transition: color var(--trans);
}
a.footer-contact-line:hover { color: var(--white); }
.footer-col-social .footer-social-label {
  font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.55); margin-bottom: 0.8rem;
}
.footer-social-row { display: flex; gap: 0.5rem; }
.footer-social-icon {
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.1);
  transition: color var(--trans), border-color var(--trans);
}
.footer-social-icon:hover { color: var(--white); border-color: rgba(255,255,255,0.3); }

/* ═══════════════════════════════════════════════════
   INTERIOR — PAGE BANNER
═══════════════════════════════════════════════════ */
.page-banner {
  background: var(--black);
  padding: 11rem 0 6.5rem;
  position: relative; overflow: hidden;
}
.page-banner::after {
  content: ''; position: absolute; inset: 0;
  background: url('images/hero-interior.jpg') center/cover no-repeat;
  opacity: 0.05; pointer-events: none;
}
.page-banner .container { position: relative; z-index: 1; }
.page-banner .eyebrow { color: rgba(255,255,255,0.3); }
.page-banner h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5.5vw, 5rem);
  font-weight: 300; color: var(--white);
  margin: 0.65rem 0 1rem; letter-spacing: -0.01em; line-height: 1.05;
}
.page-banner p { font-size: 0.88rem; color: rgba(255,255,255,0.5); max-width: 760px; line-height: 1.65; }

/* About page */
.about-story { background: var(--white); padding: 9rem 0; }
.about-story-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 7rem; align-items: center;
}
.about-interior-photo {
  width: 100%; aspect-ratio: 3/4;
  object-fit: cover; filter: grayscale(10%);
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 400; line-height: 1.1;
  color: var(--black);
}
.section-title em { font-style: italic; }
.about-story-body { font-size: 0.9rem; line-height: 1.65; color: var(--muted); margin-bottom: 1rem; }
.about-values { background: var(--off-white); padding: 9rem 0; }
.section-header.centered { text-align: center; max-width: 560px; margin: 0 auto 4rem; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.value-card { background: var(--white); padding: 2.75rem; }
.value-icon {
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--lt-grey);
  margin-bottom: 1.25rem; color: var(--black);
}
.value-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; font-weight: 500;
  color: var(--black); margin-bottom: 0.5rem;
}
.value-text { font-size: 0.83rem; line-height: 1.6; color: var(--muted); }

/* Services page */
.services-page-section { background: var(--white); padding: 0; }
.services-page-list {}
.service-row {
  display: grid; grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--lt-grey); overflow: hidden;
}
.service-row:nth-child(even) .service-row-img { order: 2; }
.service-row:nth-child(even) .service-row-content { order: 1; }
.service-row-img { overflow: hidden; }
.service-row-img img {
  width: 100%; height: 100%; min-height: 400px;
  object-fit: cover; object-position: center;
  filter: grayscale(15%); transition: transform 0.7s ease;
}
.service-row:hover .service-row-img img { transform: scale(1.03); }
.service-row-content {
  padding: 6rem 4.5rem;
  display: flex; flex-direction: column; justify-content: center;
}
.service-row-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem; font-weight: 300;
  color: var(--lt-grey); line-height: 1; margin-bottom: 0.5rem;
}
.service-row-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem; font-weight: 400;
  color: var(--black); margin: 0.5rem 0 1rem; line-height: 1.1;
}
.service-row-desc {
  font-size: 0.875rem; line-height: 1.65;
  color: var(--muted); margin-bottom: 1.75rem;
}
.service-features { display: flex; flex-direction: column; gap: 0.45rem; margin-bottom: 2.25rem; }
.service-feature {
  font-size: 0.78rem; color: var(--muted);
  padding-left: 1.1rem; position: relative;
}
.service-feature::before { content: '—'; position: absolute; left: 0; color: var(--grey); }

/* Book page */
.book-section { background: var(--white); padding: 5rem 0 8rem; }
.book-content { max-width: 540px; margin: 0 auto 3.5rem; text-align: center; }
.book-body { font-size: 0.9rem; line-height: 1.65; color: var(--muted); }
.book-option {
  background: var(--off-white); padding: 2.5rem;
  text-align: center; border: 1px solid var(--lt-grey);
  display: flex; flex-direction: column; align-items: center; gap: 0.75rem;
}
.book-option-icon { color: var(--black); }
.book-option-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 500; color: var(--black);
}
.book-option-sub { font-size: 0.82rem; line-height: 1.65; color: var(--muted); }

/* Contact page */
.contact-section { padding: 7.5rem 0; background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; }
.contact-info-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem; font-weight: 400;
  color: var(--black); margin-bottom: 0.75rem;
}
.contact-info-text { font-size: 0.9rem; line-height: 1.65; color: var(--muted); margin-bottom: 2.25rem; }
.contact-details { display: flex; flex-direction: column; gap: 1.6rem; margin-bottom: 2.5rem; }
.contact-detail { display: flex; gap: 1rem; align-items: flex-start; }
.contact-detail-icon { color: var(--black); margin-top: 2px; flex-shrink: 0; }
.contact-detail-label {
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--grey); margin-bottom: 0.2rem;
}
.contact-detail-value { font-size: 0.875rem; line-height: 1.65; color: var(--muted); }
.contact-detail-value a { color: var(--black); transition: color var(--trans); }
.contact-detail-value a:hover { color: var(--grey); }
.contact-form-card {
  background: var(--off-white); padding: 3rem;
  border: 1px solid var(--lt-grey);
}
.form-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.65rem; font-weight: 400;
  color: var(--black); margin-bottom: 1.75rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-group label {
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--grey);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--white); border: 1px solid var(--lt-grey);
  font-family: 'Inter', sans-serif; font-size: 0.875rem;
  color: var(--black); padding: 0.75rem 1rem;
  outline: none; -webkit-appearance: none; appearance: none; border-radius: 0;
  transition: border-color var(--trans);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--black); }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-submit-btn {
  width: 100%; background: var(--black); color: var(--white);
  font-family: 'Inter', sans-serif; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 1rem; border: 1.5px solid var(--black);
  cursor: pointer; margin-top: 0.5rem;
  transition: background var(--trans), color var(--trans);
}
.form-submit-btn:hover { background: transparent; color: var(--black); }
.form-success {
  background: var(--off-white); border: 1px solid var(--lt-grey);
  color: var(--muted); padding: 1rem 1.25rem; font-size: 0.875rem;
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-content { max-width: 65%; }
  .about-section { grid-template-columns: 1fr; }
  .about-video-col { padding: 3rem 2.5rem 1.5rem; }
  .about-content-col { padding: 1.5rem 2.5rem 4rem; }
  .skills-content { padding: 5rem 3.5rem; }
  .newsletter-inner { grid-template-columns: 1fr; gap: 3rem; }
  .footer-row { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .about-story-grid { grid-template-columns: 1fr; gap: 4rem; }
}

@media (max-width: 768px) {
  .container { padding: 0 1.5rem; }
  .header-inner { grid-template-columns: 1fr auto; }
  .site-logo { justify-content: flex-start; }
  .primary-nav { display: none; }
  .nav-toggle { display: flex; grid-column: 2; justify-self: end; }

  .hero-content { max-width: 94%; }
  .hero-panel-right::after {
    background: linear-gradient(rgba(8,8,8,0.55) 0%, rgba(8,8,8,0.35) 35%, rgba(8,8,8,0.35) 65%, rgba(8,8,8,0.65) 100%);
  }
  .hero-h1 { font-size: clamp(3.5rem, 12vw, 5rem); }
  .hero-press-inner { grid-template-columns: 1fr; }
  .press-col { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); padding: 1.75rem 1.5rem; }
  .press-col:last-child { border-bottom: none; }

  .services-row { grid-template-columns: 3.5rem 1fr; }
  .services-link { display: none; }

  .loc-grid { grid-template-columns: 1fr; }
  .skills-grid { grid-template-columns: 1fr; }
  .skills-photo { height: 300px; }
  .skills-content { padding: 4rem 2rem; }

  .values-grid { grid-template-columns: 1fr; }
  .service-row { grid-template-columns: 1fr; }
  .service-row:nth-child(even) .service-row-img { order: 0; }
  .service-row:nth-child(even) .service-row-content { order: 0; }
  .service-row-content { padding: 3rem 2rem; }
  .service-row-img img { min-height: 280px; }

  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-row { grid-template-columns: 1fr; gap: 2rem; }

  .featured-logos { grid-template-columns: 1fr; }
  .featured-logo { border-right: none; border-bottom: 1px solid var(--lt-grey); }
  .featured-logo:last-child { border-bottom: none; }

  .newsletter-inner { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════
   HOMEPAGE — CONCIERGE TEASER
═══════════════════════════════════════════════════ */
.hp-concierge {
  background: var(--black);
  color: var(--white);
  padding: 7rem 0;
}
.hp-concierge-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 5rem;
  align-items: center;
}
.hp-concierge-text .eyebrow {
  color: var(--grey);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 1.25rem;
}
.hp-concierge-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}
.hp-concierge-lead {
  color: var(--lt-grey);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 1.75rem;
  max-width: 560px;
}
.hp-concierge-points {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.hp-concierge-points li {
  color: var(--lt-grey);
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.97rem;
  line-height: 1.5;
}
.hp-concierge-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 1px;
  background: var(--white);
}
.hp-concierge-points li strong {
  color: var(--white);
  font-weight: 600;
}
.hp-concierge-cta {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  flex-wrap: wrap;
}
.hp-concierge-cta .hero-btn-primary {
  background: var(--white);
  color: var(--black);
}
.hp-concierge-cta .hero-btn-primary:hover {
  background: var(--off-white);
}
.hp-concierge-cta .services-link {
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 0.15rem;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: var(--trans);
}
.hp-concierge-cta .services-link:hover {
  border-bottom-color: var(--white);
}

/* Stats card on the right */
.hp-concierge-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid rgba(255,255,255,0.12);
}
.hp-concierge-stat {
  padding: 2.25rem 1.5rem;
  border-right: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  text-align: center;
}
.hp-concierge-stat:nth-child(2n) { border-right: none; }
.hp-concierge-stat:nth-last-child(-n+2) { border-bottom: none; }
.hp-concierge-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.2rem;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.hp-concierge-stat-lbl {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.7rem;
  color: var(--grey);
}

@media (max-width: 900px) {
  .hp-concierge { padding: 5rem 0; }
  .hp-concierge-grid { grid-template-columns: 1fr; gap: 3rem; }
}

/* Star glyph in stat numbers — keep proportional to the digit */
.gg-star {
  display: inline-block;
  font-size: 0.5em;
  vertical-align: 0.45em;
  margin-left: 0.18em;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
}

/* ── Client edits (Darius, 5/31): center + space location cards ── */
.loc-grid {
	justify-content: center;
	gap: 4.5rem;
	max-width: 1000px;
	margin-left: auto;
	margin-right: auto;
}
@media (max-width: 720px) {
	.loc-grid { gap: 2.5rem; }
}
.hp-concierge-credit {
	margin-top: 0.4rem;
	font-size: 0.85rem;
	letter-spacing: 0.02em;
	color: var(--grey);
}
.hp-concierge-credit em { font-style: italic; }

/* Footer legal links (Terms / Privacy — parity with live site) */
.footer-legal { margin-top: 0.5rem; font-size: 0.78rem; color: rgba(255,255,255,0.78); }
.footer-legal a { color: rgba(255,255,255,0.78); transition: var(--trans); }
.footer-legal a:hover { color: var(--white); }
.footer-legal span { margin: 0 0.4rem; }

/* Generic page template (page.php — terms, privacy, etc.) */
.page-content-section { padding: 5rem 0 7rem; background: var(--white); }
.page-body {
	max-width: 760px;
	margin: 0 auto;
	font-size: 1rem;
	line-height: 1.65;
	color: var(--muted);
}
.page-body h2, .page-body h3 {
	font-family: 'Cormorant Garamond', serif;
	color: var(--black);
	font-weight: 500;
	margin: 2.2rem 0 0.8rem;
}
.page-body p { margin-bottom: 1.1rem; }
.page-body a { color: var(--black); text-decoration: underline; }
.page-body ul, .page-body ol { margin: 0 0 1.1rem 1.4rem; }

/* Site credit — Bobby's Brand */
.footer-credit {
	border-top: 1px solid rgba(255,255,255,0.08);
	padding: 1.1rem 0;
	text-align: center;
	font-size: 0.74rem;
	letter-spacing: 0.04em;
	color: rgba(255,255,255,0.7);
}
.footer-credit a {
	color: rgba(255,255,255,0.95);
	transition: var(--trans);
}
.footer-credit a:hover { color: var(--white); }

/* Footer newsletter (Mailchimp) ------------------------------------------- */
.footer-newsletter {
	border-bottom: 1px solid rgba(255,255,255,0.08);
	padding: 3rem 0;
}
.footer-nl-grid {
	display: flex; align-items: center; justify-content: space-between;
	gap: 2.5rem; flex-wrap: wrap;
}
.footer-nl-eyebrow {
	display: block; font-size: 0.62rem; font-weight: 700;
	letter-spacing: 0.22em; text-transform: uppercase;
	color: rgba(255,255,255,0.45); margin-bottom: 0.6rem;
}
.footer-nl-head {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.9rem; font-weight: 400; line-height: 1.1; color: var(--white);
}
.footer-nl-sub { font-size: 0.82rem; color: rgba(255,255,255,0.55); margin-top: 0.45rem; }
.footer-nl-form { display: flex; gap: 0.5rem; flex: 1; max-width: 460px; min-width: 280px; }
.footer-nl-input {
	flex: 1; background: transparent;
	border: 1px solid rgba(255,255,255,0.25);
	color: var(--white); padding: 0.85rem 1rem;
	font-family: inherit; font-size: 0.9rem;
}
.footer-nl-input::placeholder { color: rgba(255,255,255,0.4); }
.footer-nl-input:focus { outline: none; border-color: var(--white); }
.footer-nl-btn {
	background: var(--white); color: var(--black);
	font-family: 'Sackers Gothic', 'Inter', sans-serif;
	font-size: 0.72rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
	padding: 0 1.6rem; white-space: nowrap;
	transition: background var(--trans);
}
.footer-nl-btn:hover { background: var(--off-white); }
@media (max-width: 700px) {
	.footer-nl-grid { flex-direction: column; align-items: flex-start; }
	.footer-nl-form { width: 100%; max-width: none; }
}
