/* ==========================================================================
   BURAGINA'S MEN'S FASHIONS — Redesign concept
   Hand-coded, framework-free. Design tokens below drop cleanly into any
   platform's custom-CSS panel (Wix Studio, WordPress child theme, etc.)
   ========================================================================== */

/* ---- Design tokens ------------------------------------------------------ */
:root {
  /* Color */
  --navy-950: #0a111e;
  --navy-900: #0e1726;
  --navy-800: #13202f;   /* primary dark surface */
  --navy-700: #1b2c42;
  --gold-300: #dcbe83;
  --gold-400: #cfa963;
  --gold-500: #bd944d;   /* primary accent */
  --gold-600: #a37e3d;
  --maroon-700: #6c1f2d;
  --maroon-800: #591a26;
  --cream-50:  #fbf9f5;  /* light page background */
  --cream-100: #f4efe7;
  --white: #ffffff;
  --ink-900: #1a2230;    /* body text on light */
  --ink-500: #5d6675;    /* muted text on light */
  --line-light: #e6dfd2; /* hairlines on light */
  --on-dark: #f3efe8;    /* body text on navy */
  --on-dark-muted: #aab4c3;

  /* Type */
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Montserrat", "Segoe UI", Arial, sans-serif;
  --track-caps: 0.18em;
  --track-wide: 0.3em;

  /* Rhythm */
  --container: 1200px;
  --gutter: clamp(20px, 4vw, 32px);
  --section-y: clamp(64px, 9vw, 112px);
  --radius: 3px;

  /* Effects */
  --shadow-card: 0 18px 40px -18px rgba(14, 23, 38, 0.35);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---- Reset / base ------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-900);
  background: var(--cream-50);
}
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; margin: 0 0 0.5em; }
p { margin: 0 0 1em; }
a { color: inherit; }
button { font: inherit; cursor: pointer; }
:focus-visible { outline: 2px solid var(--gold-400); outline-offset: 3px; }
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--gold-500); color: var(--navy-900); padding: 10px 18px;
  font-weight: 600; text-decoration: none;
}
.skip-link:focus { left: 12px; top: 12px; }

.container { max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }

/* ---- Small shared pieces ------------------------------------------------ */
.kicker {
  display: block;
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: var(--track-wide);
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 1.1em;
}
.on-dark .kicker { color: var(--gold-300); }

.btn {
  display: inline-block;
  padding: 15px 30px;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: var(--track-caps);
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  transition: background-color 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn-gold { background: var(--gold-500); color: var(--navy-950); }
.btn-gold:hover { background: var(--gold-400); }
.btn-outline { border-color: rgba(243, 239, 232, 0.65); color: var(--on-dark); }
.btn-outline:hover { border-color: var(--gold-300); color: var(--gold-300); }
.btn-outline-dark { border-color: var(--navy-800); color: var(--navy-800); }
.btn-outline-dark:hover { background: var(--navy-800); color: var(--on-dark); }

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: var(--track-caps);
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink-900);
  transition: color 0.2s var(--ease), gap 0.2s var(--ease);
}
.arrow-link::after { content: "\2192"; color: var(--gold-500); transition: transform 0.2s var(--ease); }
.arrow-link:hover { color: var(--gold-600); }
.arrow-link:hover::after { transform: translateX(4px); }

.section { padding-block: var(--section-y); }
.section-dark { background: var(--navy-800); color: var(--on-dark); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-cream { background: var(--cream-100); }

.section-head { max-width: 560px; }
.section-head h2 { font-size: clamp(1.9rem, 3.6vw, 2.75rem); }
.section-head p { color: var(--ink-500); }
.section-dark .section-head p { color: var(--on-dark-muted); }

/* ---- Top bar ------------------------------------------------------------ */
.topbar {
  background: var(--gold-500);
  color: var(--navy-950);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.06em;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  min-height: 38px;
  padding-block: 6px;
}
.topbar a { color: inherit; text-decoration: none; }
.topbar a:hover { text-decoration: underline; }
.topbar-contact { display: flex; align-items: center; gap: 22px; flex-wrap: nowrap; }
.topbar-item { display: inline-flex; align-items: center; gap: 7px; white-space: nowrap; }
.topbar-item svg { width: 13px; height: 13px; flex: none; }
.topbar-social { display: inline-flex; align-items: center; gap: 12px; }
.topbar-social span { margin-right: 2px; }
.topbar-social a { display: inline-flex; }
.topbar-social svg { width: 15px; height: 15px; }

/* ---- Header / nav ------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy-800);
  color: var(--on-dark);
  transition: box-shadow 0.3s var(--ease);
}
.site-header.is-stuck { box-shadow: 0 12px 30px -12px rgba(10, 17, 30, 0.7); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
}
.brand { text-decoration: none; color: var(--white); line-height: 1.1; }
.brand-name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 0.09em;
}
.brand-sub {
  display: block;
  margin-top: 3px;
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.46em;
  text-transform: uppercase;
  color: var(--gold-400);
}
.site-nav { display: flex; align-items: center; gap: clamp(18px, 2.6vw, 34px); }
.site-nav a {
  position: relative;
  padding: 6px 0;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--on-dark);
  transition: color 0.2s var(--ease);
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -2px;
  height: 2px;
  background: var(--gold-400);
  transition: right 0.25s var(--ease);
}
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--gold-300); }
.site-nav a:hover::after, .site-nav a[aria-current="page"]::after { right: 0; }
.header-cta { white-space: nowrap; padding: 12px 22px; font-size: 0.7rem; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 10px;
  color: var(--on-dark);
}
.nav-toggle svg { width: 26px; height: 26px; display: block; }
.nav-toggle .icon-close { display: none; }
.nav-open .nav-toggle .icon-burger { display: none; }
.nav-open .nav-toggle .icon-close { display: block; }

/* ---- Hero --------------------------------------------------------------- */
.hero {
  position: relative;
  background: linear-gradient(160deg, var(--navy-700) 0%, var(--navy-800) 45%, var(--navy-950) 100%);
  color: var(--on-dark);
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 62% 30%; }
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--navy-800) 8%, rgba(19, 32, 47, 0.72) 38%, rgba(19, 32, 47, 0.12) 68%),
    linear-gradient(0deg, rgba(14, 23, 38, 0.6) 0%, rgba(14, 23, 38, 0) 40%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: clamp(520px, 72vh, 700px);
  max-width: 620px;
  padding-block: clamp(72px, 10vw, 120px);
}
.hero h1 {
  font-size: clamp(2.5rem, 5.6vw, 4.1rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.35em;
}
.hero h1 .accent { color: var(--gold-400); }
.hero-lede {
  max-width: 46ch;
  color: var(--on-dark-muted);
  font-size: 0.98rem;
  margin-bottom: 2.2em;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---- We've Moved -------------------------------------------------------- */
.moved-section { background: var(--cream-100); }
.moved-grid {
  display: grid;
  grid-template-columns: 1.2fr minmax(280px, 1fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}
.moved-media { position: relative; }
.moved-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: 35% 70%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}
.moved-media::before {
  content: "";
  position: absolute;
  inset: -16px 16px 16px -16px;
  border: 1px solid var(--gold-400);
  border-radius: var(--radius);
  pointer-events: none;
}
.moved-copy h2 {
  font-size: clamp(2.1rem, 4.2vw, 3.15rem);
  margin-bottom: 0.35em;
}
.moved-copy p { color: var(--ink-500); }
.moved-copy address {
  font-style: normal;
  margin: 1.3em 0 1.8em;
  color: var(--ink-500);
  line-height: 1.65;
}
.moved-copy address strong {
  display: block;
  color: var(--ink-900);
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 2px;
}
.moved-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---- Category cards ----------------------------------------------------- */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(18px, 2.4vw, 28px);
}
.cat-card { text-align: center; }
.cat-card .frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4 / 5;
  margin-bottom: 20px;
  background: var(--cream-100);
}
.cat-card .frame a {
  position: absolute;
  inset: 0;
  display: block;
}
.cat-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.cat-card .frame img {
  position: absolute;
  inset: 0;
}
.cat-card:hover img { transform: scale(1.05); }
.cat-card h3 {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.cat-card p {
  font-size: 0.83rem;
  color: var(--ink-500);
  line-height: 1.55;
  margin-bottom: 12px;
  min-height: 2.6em;
}

/* ---- Expertise (dark) --------------------------------------------------- */
.expertise-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) 2fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}
.expertise-copy p { color: var(--on-dark-muted); margin-bottom: 2em; }
.expertise-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.4vw, 26px);
}
.exp-card { text-align: center; }
.exp-card .frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4 / 5;
  margin-bottom: 58px;
}
.exp-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.exp-card:hover img { transform: scale(1.04); }
.exp-card .badge {
  position: absolute;
  left: 50%;
  bottom: -37px;
  transform: translateX(-50%);
  width: 74px; height: 74px;
  border-radius: 50%;
  background: var(--navy-900);
  border: 1px solid rgba(207, 169, 99, 0.55);
  display: grid;
  place-items: center;
}
.exp-card .frame { overflow: visible; }
.exp-card .frame .img-clip { overflow: hidden; border-radius: var(--radius); width: 100%; height: 100%; }
.exp-card .badge img { width: 44px; height: 44px; object-fit: contain; }
.exp-card h3 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-300);
  margin-bottom: 6px;
}
.exp-card p { font-size: 0.83rem; color: var(--on-dark-muted); line-height: 1.6; margin: 0; }

/* ---- Featured collection ------------------------------------------------ */
.featured-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) 2fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.featured-copy p { color: var(--ink-500); margin-bottom: 2em; }
.featured-imgs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 1.6vw, 20px);
}
.featured-imgs figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 3 / 4;
}
.featured-imgs img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.featured-imgs figure:hover img { transform: scale(1.05); }

/* ---- Social feed -------------------------------------------------------- */
.social-feed-section { background: var(--cream-100); }
.social-feed-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(280px, 500px);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.social-feed-copy p { color: var(--ink-500); margin-bottom: 2em; }
.social-feed-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.social-feed-embed {
  background: var(--white);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  min-height: 560px;
}
.social-feed-embed iframe { display: block; }

/* ---- Value band (maroon) ------------------------------------------------ */
.value-band { background: var(--maroon-700); color: var(--on-dark); padding-block: clamp(36px, 5vw, 54px); }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.value-item {
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: center;
  padding: 14px clamp(16px, 3vw, 40px);
}
.value-item + .value-item { border-left: 1px solid rgba(220, 190, 131, 0.3); }
.value-item img { width: 54px; height: 54px; flex: none; object-fit: contain; }
.value-item h3 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-300);
  margin: 0 0 4px;
}
.value-item p { font-size: 0.82rem; margin: 0; color: rgba(243, 239, 232, 0.85); line-height: 1.5; }

/* ---- Visit -------------------------------------------------------------- */
.visit-grid {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) 1.15fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}
.visit-copy h2 { font-size: clamp(1.9rem, 3.6vw, 2.75rem); }
.visit-copy address { font-style: normal; color: var(--on-dark-muted); margin-bottom: 1.4em; }
.visit-copy address strong { color: var(--on-dark); font-weight: 600; }
.hours { width: 100%; max-width: 380px; border-collapse: collapse; margin-bottom: 2em; font-size: 0.88rem; }
.hours th, .hours td { text-align: left; padding: 9px 0; border-bottom: 1px solid rgba(170, 180, 195, 0.18); }
.hours th { font-weight: 500; color: var(--on-dark); }
.hours td { text-align: right; color: var(--on-dark-muted); }
.hours .closed td { color: rgba(170, 180, 195, 0.6); }
.visit-media { position: relative; }
.visit-media img { border-radius: var(--radius); box-shadow: var(--shadow-card); }
.visit-media::before {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 1px solid rgba(207, 169, 99, 0.4);
  border-radius: var(--radius);
  pointer-events: none;
}

/* ---- Footer ------------------------------------------------------------- */
.site-footer { background: var(--navy-950); color: var(--on-dark-muted); font-size: 0.86rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: clamp(28px, 4vw, 56px);
  padding-block: clamp(48px, 7vw, 76px);
}
.footer-brand .brand-name { font-size: 1.25rem; color: var(--white); }
.footer-brand .brand-sub { margin-bottom: 18px; }
.footer-brand p { max-width: 30ch; line-height: 1.7; }
.site-footer h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 1.4em;
}
.footer-list { list-style: none; margin: 0; padding: 0; }
.footer-list li { margin-bottom: 10px; }
.footer-list a { text-decoration: none; transition: color 0.2s var(--ease); }
.footer-list a:hover { color: var(--gold-300); }
.footer-hours li { display: flex; justify-content: space-between; gap: 12px; max-width: 250px; }
.footer-hours span:last-child { color: var(--on-dark); }
.footer-social { display: flex; gap: 14px; margin-top: 18px; }
.footer-social a {
  display: grid;
  place-items: center;
  width: 38px; height: 38px;
  border: 1px solid rgba(170, 180, 195, 0.3);
  border-radius: 50%;
  color: var(--on-dark);
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease), background 0.2s var(--ease);
}
.footer-social a:hover { border-color: var(--gold-400); color: var(--gold-300); }
.footer-social svg { width: 16px; height: 16px; }
.footer-bottom { background: var(--gold-500); color: var(--navy-950); font-size: 0.76rem; font-weight: 500; }
.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 8px 24px;
  min-height: 46px;
  padding-block: 8px;
}
.footer-bottom a { color: inherit; text-decoration: none; margin-left: 22px; }
.footer-bottom a:hover { text-decoration: underline; }
.site-credit {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  opacity: 0.88;
}
.footer-bottom .site-credit a {
  margin-left: 0.28em;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ---- Interior page hero strip ------------------------------------------- */
.page-hero {
  background: linear-gradient(160deg, var(--navy-700) 0%, var(--navy-800) 55%, var(--navy-950) 100%);
  color: var(--on-dark);
  padding-block: clamp(56px, 8vw, 96px);
}
.page-hero h1 { font-size: clamp(2.2rem, 4.6vw, 3.4rem); color: var(--white); margin-bottom: 0.3em; }
.page-hero p { max-width: 60ch; color: var(--on-dark-muted); margin: 0; }

/* ---- Split blocks (shop/about) ------------------------------------------ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.split + .split { margin-top: var(--section-y); }
.split-media { overflow: hidden; border-radius: var(--radius); }
.split-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 5 / 4; }
.split.flip .split-media { order: 2; }
.split h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); }
.split p { color: var(--ink-500); }
.split .brands-line {
  font-size: 0.95rem;
  line-height: 1.8;
  letter-spacing: 0.01em;
  color: var(--ink-900);
}
.split .brands-line strong { font-weight: 700; }

/* ---- Brand wall --------------------------------------------------------- */
.brand-groups { display: grid; gap: clamp(28px, 4vw, 40px); }
.brand-group h3 {
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 14px;
}
.brand-wall {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(168px, 1fr));
  gap: 12px;
}
.brand-wall li {
  list-style: none;
  display: grid;
  place-items: center;
  min-height: 72px;
  padding: 14px 12px;
  background: var(--white);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.35;
  text-align: center;
  color: var(--ink-900);
  hyphens: none;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.brand-wall li:hover {
  border-color: var(--gold-400);
  transform: translateY(-3px);
  box-shadow: 0 14px 28px -18px rgba(14, 23, 38, 0.35);
}
.brand-wall { padding-left: 0; margin: 0; }

/* ---- Contact ------------------------------------------------------------ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
.info-card {
  background: var(--white);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  padding: 24px 26px;
  margin-bottom: 18px;
}
.info-card h3 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 10px;
}
.info-card p, .info-card address { margin: 0; font-style: normal; color: var(--ink-500); font-size: 0.92rem; }
.info-card a { color: var(--navy-800); font-weight: 600; text-decoration: none; }
.info-card a:hover { color: var(--gold-600); }
.info-card .big { font-family: var(--font-display); font-size: 1.35rem; }
.hours-light { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.hours-light th, .hours-light td { text-align: left; padding: 8px 0; border-bottom: 1px solid var(--line-light); }
.hours-light th { font-weight: 500; color: var(--ink-900); }
.hours-light td { text-align: right; color: var(--ink-500); }
.hours-light tr:last-child th, .hours-light tr:last-child td { border-bottom: 0; }

.contact-form {
  background: var(--white);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  padding: clamp(24px, 3.5vw, 40px);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 7px;
  color: var(--ink-900);
}
.field input, .field textarea {
  width: 100%;
  padding: 13px 14px;
  font: inherit;
  font-size: 0.92rem;
  color: var(--ink-900);
  background: var(--cream-50);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  transition: border-color 0.2s var(--ease);
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--gold-500); }
.field textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: 0.78rem; color: var(--ink-500); margin: 14px 0 0; }
.form-success {
  display: none;
  margin-top: 16px;
  padding: 14px 16px;
  background: #f1f7f1;
  border: 1px solid #cfe3cf;
  border-radius: var(--radius);
  color: #2f5d33;
  font-size: 0.88rem;
}
.form-success.show { display: block; }

/* ---- Legal -------------------------------------------------------------- */
.legal-body { max-width: 760px; }
.legal-body h2 { font-size: 1.35rem; margin-top: 2em; }
.legal-body p, .legal-body li { color: var(--ink-500); font-size: 0.94rem; }
.legal-note {
  margin-top: 3em;
  padding: 16px 20px;
  background: var(--cream-100);
  border-left: 3px solid var(--gold-500);
  font-size: 0.82rem;
  color: var(--ink-500);
}

/* ---- CTA band ----------------------------------------------------------- */
.cta-band { text-align: center; }
.cta-band .section-head { margin-inline: auto; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 10px; }

/* ---- Scroll reveal (only when JS is present — .js set on <html>) -------- */
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .btn:hover, .cat-card:hover img, .exp-card:hover img, .featured-imgs figure:hover img { transform: none; }
}

/* ---- Responsive --------------------------------------------------------- */
@media (max-width: 1080px) {
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .cat-card:nth-last-child(-n+2):first-child, .cat-card { min-width: 0; }
  .expertise-grid, .featured-grid, .social-feed-grid { grid-template-columns: 1fr; }
  .expertise-copy, .featured-copy, .social-feed-copy { max-width: 560px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .site-nav {
    position: fixed;
    inset: 0;
    top: 0;
    z-index: 90;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    background: rgba(10, 17, 30, 0.98);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s var(--ease);
  }
  .nav-open .site-nav { opacity: 1; visibility: visible; }
  .site-nav a { font-size: 1rem; }
  .nav-toggle { display: block; position: relative; z-index: 95; }
  .header-cta { display: none; }
  .hero-media { position: relative; inset: auto; width: 100%; height: 340px; order: -1; }
  .hero-media::after {
    background: linear-gradient(0deg, var(--navy-800) 0%, rgba(19, 32, 47, 0.55) 42%, rgba(19, 32, 47, 0.12) 72%);
  }
  .hero { display: flex; flex-direction: column; }
  .hero-inner {
    min-height: 0;
    padding-top: 0;
    padding-bottom: 40px;
    margin-top: -96px;
  }
  .split, .visit-grid, .contact-grid, .moved-grid { grid-template-columns: 1fr; }
  .moved-media { margin-left: 16px; }
  .split.flip .split-media { order: 0; }
  .visit-media { margin-right: 18px; }
  .value-grid { grid-template-columns: 1fr; gap: 4px; }
  .value-item { justify-content: flex-start; }
  .value-item + .value-item { border-left: 0; border-top: 1px solid rgba(220, 190, 131, 0.3); }
}
@media (max-width: 640px) {
  .hero-inner { margin-top: -112px; padding-bottom: 32px; }
  .topbar { font-size: clamp(0.58rem, 2.7vw, 0.74rem); letter-spacing: 0.04em; }
  .topbar-inner { justify-content: center; padding-inline: clamp(10px, 3vw, 20px); }
  .topbar-contact { gap: 12px; }
  .topbar-item { gap: 5px; }
  .topbar-social { display: none; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-card p { min-height: 0; }
  .expertise-cards { grid-template-columns: 1fr; max-width: 380px; margin-inline: auto; }
  .featured-imgs { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-bottom-inner { justify-content: center; text-align: center; }
}
