/* ======================================================================
   NØVRA Interiors — Shared site stylesheet
   Carpentry & Flooring Services — UK Wide
   Used on every page: index, about, services, projects, gallery, contact
   ====================================================================== */

:root {
  --radius: .5rem;
  --background: oklch(14% .005 60);
  --foreground: oklch(96% .01 80);
  --card: oklch(17% .008 60);
  --card-foreground: oklch(96% .01 80);
  --primary: oklch(78% .13 82);
  --primary-foreground: oklch(14% .005 60);
  --secondary: oklch(22% .01 60);
  --secondary-foreground: oklch(96% .01 80);
  --muted: oklch(22% .01 60);
  --muted-foreground: oklch(72% .02 80);
  --accent: oklch(78% .13 82);
  --border: oklch(28% .02 70);
  --input: oklch(22% .01 60);
  --gold: oklch(78% .13 82);
  --gold-soft: oklch(68% .11 82);
  --font-display: "Cormorant Garamond", serif;
  --font-sans: "Inter", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; }

.font-display { font-family: var(--font-display); }
.text-gold { color: var(--gold); }
.muted { color: var(--muted-foreground); }

.wrap { max-width: 80rem; margin: 0 auto; padding: 0 1.25rem; }
@media(min-width:640px) { .wrap { padding: 0 1.5rem; } }

.text-gradient-gold {
  background: linear-gradient(90deg, var(--gold-soft), var(--gold) 45%, #fff6df 55%, var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.divider-gold { display: flex; align-items: center; justify-content: center; gap: .75rem; }
.divider-gold .line { height: 1px; width: 2.5rem; background: color-mix(in oklch, var(--gold) 60%, transparent); }
@media(min-width:640px) { .divider-gold .line { width: 4rem; } }

/* ============ Header / Nav ============ */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in oklch, var(--background) 85%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid color-mix(in oklch, var(--border) 50%, transparent);
}

.header-inner {
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .55rem 1.25rem;
}
@media(min-width:640px) { .header-inner { padding: .55rem 1.5rem; } }

.logo img { height: 60px; width: auto; }
@media(min-width:640px) { .logo img { height: 90px; width: auto; } }

nav.main-nav { display: none; align-items: center; gap: 1.75rem; font-size: .85rem; letter-spacing: .2em; }
@media(min-width:1024px) { nav.main-nav { display: flex; } }
nav.main-nav a { text-transform: uppercase; color: color-mix(in oklch, var(--foreground) 80%, transparent); transition: color .2s; }
nav.main-nav a:hover, nav.main-nav a.active { color: var(--gold); }

.menu-btn {
  display: inline-grid; place-items: center; border: 1px solid var(--border);
  border-radius: 6px; padding: .5rem; color: var(--gold); background: none; cursor: pointer;
}
@media(min-width:1024px) { .menu-btn { display: none; } }

.mobile-nav {
  display: none; flex-direction: column; gap: .25rem;
  border-top: 1px solid color-mix(in oklch, var(--border) 50%, transparent);
  padding: .75rem 1.25rem 1rem; max-width: 80rem; margin: 0 auto;
}
.mobile-nav.flex { display: flex; }
.mobile-nav.hidden { display: none; }
.mobile-nav a {
  padding: .6rem .25rem; text-transform: uppercase; font-size: .8rem; letter-spacing: .15em;
  color: var(--foreground); border-bottom: 1px solid color-mix(in oklch, var(--border) 40%, transparent);
}
.mobile-nav a.active { color: var(--gold); }

/* ============ Buttons ============ */
.cta-btn, .btn-outline {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .75rem 1.4rem; font-size: .75rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase; border-radius: 2px;
  cursor: pointer; transition: background .2s, transform .2s, color .2s, border-color .2s;
}
.cta-btn {
  border: 1px solid var(--gold);
  background: color-mix(in oklch, var(--gold) 90%, transparent);
  color: var(--primary-foreground);
}
.cta-btn:hover { background: var(--gold); transform: translateY(-1px); }
.btn-outline { border: 1px solid var(--border); background: none; color: var(--foreground); margin-top:19px;}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.cta-btn svg, .btn-outline svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ============ Hero (page banners) ============ */
.hero {
  position: relative; padding: 6.5rem 0 5rem; overflow: hidden; isolation: isolate;
  background-size: cover; background-position: center 30%; background-repeat: no-repeat;
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background-image: linear-gradient(180deg, color-mix(in oklch, var(--background) 45%, transparent) 0%, var(--background) 92%);
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(60% 50% at 50% 0%, color-mix(in oklch, var(--gold) 10%, transparent), transparent 70%);
}
.hero-inner { position: relative; z-index: 1; text-align: center; max-width: 46rem; margin: 0 auto; }
.hero-home-inner { max-width: 60rem; text-align: left; }
.kicker { font-size: .72rem; letter-spacing: .35em; text-transform: uppercase; color: var(--gold); margin-bottom: .75rem; }
.hero h1 { font-family: var(--font-display); font-size: clamp(2.4rem, 6vw, 4rem); line-height: 1.05; margin: 0; }
.hero p { margin-top: 1.1rem; color: var(--muted-foreground); font-size: 1.02rem; max-width: 42rem; }
.hero-home-inner p { margin-left: 0; margin-right: 0; }

.hero-buttons { display: flex; gap: .75rem; justify-content: center; margin-top: 2.25rem; flex-wrap: wrap; }
.hero-home-inner .hero-buttons { justify-content: flex-start; }
@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; }
  .hero-buttons a { width: 100%; justify-content: center; }
}

/* ============ Sections ============ */
.section { padding: 4rem 0; }
@media(min-width:1024px) { .section { padding: 6rem 0; } }
.section-alt {
  background: color-mix(in oklch, var(--card) 40%, transparent);
  border-top: 1px solid color-mix(in oklch, var(--border) 50%, transparent);
  border-bottom: 1px solid color-mix(in oklch, var(--border) 50%, transparent);
}
.section-head { text-align: center; max-width: 44rem; margin: 0 auto; }
.section-head h2 { font-family: var(--font-display); font-size: clamp(1.9rem, 4.5vw, 3rem); line-height: 1.15; }
.section-head p { margin-top: 1rem; color: var(--muted-foreground); }

/* ============ Two-column media/body block (About, Home intro, etc.) ============ */
.split {
  display: grid; gap: 2.5rem; align-items: center;
}
@media(min-width:1024px) { .split { grid-template-columns: 1fr 1fr; gap: 3.5rem; } }
.split.reverse > *:first-child { order: 2; }
@media(min-width:1024px) { .split.reverse > *:first-child { order: 2; } }

.media-frame { position: relative; }
.media-frame .glow {
  position: absolute; inset: -.75rem; border-radius: 1rem;
  background: color-mix(in oklch, var(--gold) 10%, transparent); filter: blur(40px); z-index: 0;
}
.media-frame img {
  position: relative; z-index: 1; width: 100%; height: auto; border-radius: .5rem;
  border: 1px solid color-mix(in oklch, var(--gold) 30%, transparent);
  box-shadow: 0 25px 60px -25px rgba(0,0,0,.7);
}

.eyebrow { font-size: .72rem; letter-spacing: .35em; text-transform: uppercase; color: var(--gold); margin-bottom: .75rem; }
.rule { height: 1px; width: 4rem; background: color-mix(in oklch, var(--gold) 60%, transparent); margin: 1.1rem 0 1.25rem; }
.lead { color: var(--muted-foreground); line-height: 1.8; }
.lead + .lead { margin-top: 1rem; }

/* ============ Feature / check list ============ */
.feature-list { margin-top: 1.5rem; display: grid; gap: .75rem; grid-template-columns: repeat(1,1fr); }
@media(min-width:640px) { .feature-list { grid-template-columns: repeat(2,1fr); } }
.feature-list li { display: flex; align-items: flex-start; gap: .6rem; font-size: .9rem; color: color-mix(in oklch, var(--foreground) 85%, transparent); }
.feature-list svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; margin-top: .15rem; }

/* ============ Icon strip (badges row) ============ */
.icon-strip { margin-top: 2.5rem; display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
@media(min-width:640px) { .icon-strip { grid-template-columns: repeat(4,1fr); } }
.icon-strip .item { display: flex; flex-direction: column; align-items: flex-start; gap: .5rem; }
.icon-strip svg { width: 24px; height: 24px; color: var(--gold); }
.icon-strip .label { font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 600; color: color-mix(in oklch, var(--foreground) 90%, transparent); line-height: 1.3; }

/* ============ Info / value / stat cards ============ */
.card-grid { margin-top: 2.5rem; display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; }
@media(min-width:640px) { .card-grid { grid-template-columns: repeat(3,1fr); } }
@media(min-width:1024px) { .card-grid.cols-6 { grid-template-columns: repeat(6,1fr); } }
.info-card {
  border-radius: var(--radius); border: 1px solid var(--border); background: var(--card);
  padding: 1.5rem 1.25rem; text-align: center; transition: border-color .2s;
}
.info-card:hover { border-color: color-mix(in oklch, var(--gold) 60%, transparent); }
.info-card svg { width: 30px; height: 30px; color: var(--gold); margin: 0 auto; }
.info-card .title { margin-top: 1rem; font-size: .72rem; letter-spacing: .15em; text-transform: uppercase; font-weight: 600; }
.info-card .desc { margin-top: .5rem; font-size: .82rem; color: var(--muted-foreground); line-height: 1.5; }

.stat-strip { margin-top: 2.5rem; display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; text-align: center; }
@media(min-width:640px) { .stat-strip { grid-template-columns: repeat(4,1fr); } }
.stat-strip .num { font-family: var(--font-display); font-size: clamp(2rem,4vw,2.75rem); color: var(--gold); }
.stat-strip .label { margin-top: .35rem; font-size: .72rem; letter-spacing: .15em; text-transform: uppercase; color: var(--muted-foreground); }

/* ============ Service / project cards ============ */
.services-grid { display: grid; gap: 1.75rem; margin-top: 3rem; grid-template-columns: repeat(1,minmax(0,1fr)); }
@media(min-width:640px) { .services-grid { grid-template-columns: repeat(2,minmax(0,1fr)); } }
@media(min-width:1024px) { .services-grid { grid-template-columns: repeat(3,minmax(0,1fr)); } }

.service-card {
  position: relative; border: 1px solid var(--border); background: var(--card);
  border-radius: var(--radius); overflow: hidden; cursor: pointer; text-align: left;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.service-card:hover { border-color: color-mix(in oklch, var(--gold) 60%, transparent); transform: translateY(-4px); box-shadow: 0 20px 40px -20px rgba(0,0,0,.55); }
.service-card .thumb { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.service-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.service-card:hover .thumb img { transform: scale(1.06); }
.service-card .thumb::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, color-mix(in oklch, var(--card) 92%, transparent) 100%);
}
.service-card .num {
  position: absolute; top: .9rem; left: .9rem; z-index: 2; font-family: var(--font-display);
  font-size: .75rem; letter-spacing: .2em; color: var(--gold);
  border: 1px solid color-mix(in oklch, var(--gold) 50%, transparent);
  background: color-mix(in oklch, var(--background) 60%, transparent);
  padding: .2rem .55rem; border-radius: 999px;
}
.service-card .body { padding: 1.25rem 1.4rem 1.5rem; }
.service-card h3 { font-family: var(--font-display); font-size: 1.5rem; margin: 0 0 .35rem; }
.service-card .tag { font-size: .85rem; font-style: italic; color: var(--muted-foreground); margin: 0 0 .8rem; }
.service-card .view-link { display: inline-flex; align-items: center; gap: .4rem; font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.service-card .view-link svg { width: 14px; height: 14px; transition: transform .2s; }
.service-card:hover .view-link svg { transform: translateX(4px); }

.card-actions { display: flex; gap: .6rem; margin-top: 1rem; padding-top: 1rem; border-top: 1px solid color-mix(in oklch, var(--border) 60%, transparent); }
.card-actions a {
  flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: .4rem;
  padding: .55rem .5rem; font-size: .68rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  border-radius: 3px; border: 1px solid var(--border); color: var(--foreground);
  transition: border-color .2s, color .2s, background .2s;
}
.card-actions a svg { width: 14px; height: 14px; flex-shrink: 0; }
.card-actions a.btn-email:hover { border-color: var(--gold); color: var(--gold); }
.card-actions a.btn-whatsapp { border-color: color-mix(in oklch, #25D366 50%, var(--border)); }
.card-actions a.btn-whatsapp:hover { background: #25D366; border-color: #25D366; color: #06210f; }

/* ============ Detail view (services swap) ============ */
#detail-view { display: none; }
#detail-view.active { display: block; animation: fadeUp .45s ease both; }
#list-view.hidden { display: none; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
.back-link {
  display: inline-flex; align-items: center; gap: .5rem; font-size: .75rem; letter-spacing: .15em;
  text-transform: uppercase; color: var(--muted-foreground); margin-bottom: 2rem; cursor: pointer;
  background: none; border: none; font-family: var(--font-sans); transition: color .2s;
}
.back-link:hover { color: var(--gold); }
.back-link svg { width: 16px; height: 16px; }
.detail-grid { display: grid; gap: 2.5rem; align-items: center; }
@media(min-width:1024px) { .detail-grid { grid-template-columns: 1fr 1fr; gap: 3.5rem; } }
.detail-body .service-index { font-size: .72rem; letter-spacing: .35em; text-transform: uppercase; color: var(--gold); margin-bottom: .75rem; }
.detail-body h2 { font-family: var(--font-display); font-size: clamp(2rem,4.5vw,3rem); line-height: 1.1; margin: 0 0 .4rem; }
.detail-body .tagline { font-style: italic; color: color-mix(in oklch, var(--foreground) 70%, transparent); margin: 0 0 1.1rem; }
.detail-body p.desc { color: var(--muted-foreground); line-height: 1.75; }
.detail-cta { margin-top: 2.25rem; display: flex; flex-wrap: wrap; gap: 1rem; }
.related { margin-top: 5rem; padding-top: 3rem; border-top: 1px solid color-mix(in oklch, var(--border) 50%, transparent); }
.related h4 { font-family: var(--font-display); font-size: 1.3rem; margin: 0 0 1.25rem; }
.related-grid { display: grid; gap: 1rem; grid-template-columns: repeat(2,1fr); }
@media(min-width:768px) { .related-grid { grid-template-columns: repeat(4,1fr); } }
.related-card { border: 1px solid var(--border); border-radius: .4rem; overflow: hidden; cursor: pointer; background: var(--card); transition: border-color .2s, transform .2s; }
.related-card:hover { border-color: color-mix(in oklch, var(--gold) 60%, transparent); transform: translateY(-3px); }
.related-card .rthumb { aspect-ratio: 4/3; overflow: hidden; }
.related-card img { width: 100%; height: 100%; object-fit: cover; }

/* ============ Projects page ============ */
.projects-grid { display: grid; gap: 1.75rem; margin-top: 3rem; grid-template-columns: repeat(1,1fr); }
@media(min-width:640px) { .projects-grid { grid-template-columns: repeat(2,1fr); } }
@media(min-width:1024px) { .projects-grid { grid-template-columns: repeat(3,1fr); } }
.project-card { border: 1px solid var(--border); background: var(--card); border-radius: var(--radius); overflow: hidden; transition: border-color .25s, transform .25s; }
.project-card:hover { border-color: color-mix(in oklch, var(--gold) 60%, transparent); transform: translateY(-4px); }
.project-card .thumb { aspect-ratio: 4/3; overflow: hidden; position: relative; }
.project-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.project-card:hover .thumb img { transform: scale(1.06); }
.project-card .category {
  position: absolute; top: .9rem; left: .9rem; font-size: .65rem; letter-spacing: .15em; text-transform: uppercase;
  font-weight: 600; color: var(--gold); background: color-mix(in oklch, var(--background) 75%, transparent);
  border: 1px solid color-mix(in oklch, var(--gold) 50%, transparent); padding: .3rem .6rem; border-radius: 999px;
}
.project-card .body { padding: 1.1rem 1.25rem 1.4rem; }
.project-card h3 { font-family: var(--font-display); font-size: 1.3rem; margin: 0 0 .4rem; }
.project-card p { font-size: .88rem; color: var(--muted-foreground); line-height: 1.55; }
.project-card .loc { margin-top: .75rem; display: flex; align-items: center; gap: .4rem; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted-foreground); }
.project-card .loc svg { width: 13px; height: 13px; color: var(--gold); }

.coming-soon-card {
  border: 1px dashed var(--border); border-radius: var(--radius); display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center; gap: .75rem; padding: 2.5rem 1.5rem;
  color: var(--muted-foreground); min-height: 220px;
}
.coming-soon-card svg { width: 28px; height: 28px; color: var(--gold); }
.coming-soon-card .t { font-size: .78rem; letter-spacing: .15em; text-transform: uppercase; color: var(--foreground); }

/* ============ Gallery page ============ */
.filter-bar { margin-top: 2.5rem; display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center; }
.filter-btn {
  border: 1px solid var(--border); background: none; color: var(--foreground); padding: .55rem 1.1rem;
  font-size: .68rem; letter-spacing: .15em; text-transform: uppercase; border-radius: 999px; cursor: pointer;
  transition: border-color .2s, color .2s, background .2s;
}
.filter-btn:hover { border-color: var(--gold); color: var(--gold); }
.filter-btn.active { background: var(--gold); border-color: var(--gold); color: var(--primary-foreground); }

#gallery.gallery-grid {
  margin-top: 2.5rem; display: grid; gap: 1rem; grid-template-columns: repeat(2,1fr);
}
@media(min-width:640px) { #gallery.gallery-grid { grid-template-columns: repeat(3,1fr); } }
@media(min-width:1024px) { #gallery.gallery-grid { grid-template-columns: repeat(4,1fr); } }
.gallery-item { position: relative; aspect-ratio: 1/1; overflow: hidden; border-radius: .5rem; border: 1px solid var(--border); cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item:hover { border-color: color-mix(in oklch, var(--gold) 60%, transparent); }
.gallery-item .cap {
  position: absolute; inset-inline: 0; bottom: 0; padding: .5rem .6rem;
  font-size: .62rem; letter-spacing: .1em; text-transform: uppercase; color: #fff;
  background: linear-gradient(0deg, rgba(0,0,0,.75), transparent);
}

/* ============ Contact page ============ */
.contact-wrap { display: grid; gap: 3rem; }
@media(min-width:1024px) { .contact-wrap { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.contact-info-list { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.1rem; }
.contact-info-list li { display: flex; align-items: flex-start; gap: 1rem; font-size: .92rem; }
.contact-info-list svg { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; margin-top: .1rem; }
.contact-info-list a:hover { color: var(--gold); }

.form-card { border-radius: var(--radius); border: 1px solid color-mix(in oklch, var(--gold) 30%, transparent); background: color-mix(in oklch, var(--background) 50%, transparent); padding: 1.75rem; }
@media(min-width:640px) { .form-card { padding: 2rem; } }
.form-grid { display: grid; gap: 1rem; }
@media(min-width:640px) { .form-grid { grid-template-columns: 1fr 1fr; } }
.form-grid.full { grid-template-columns: 1fr; }
.form-input, .form-select, .form-textarea {
  width: 100%; border-radius: 2px; border: 1px solid var(--border); background: color-mix(in oklch, var(--input) 50%, transparent);
  padding: .75rem 1rem; font-size: .9rem; color: var(--foreground); font-family: var(--font-sans);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--muted-foreground); }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--gold); outline: none; }
.form-textarea { margin-top: 1rem; resize: vertical; }
.form-submit { margin-top: 1.25rem; width: 100%; justify-content: center; border: none; }
@media(min-width:640px) { .form-submit { width: auto; } }
.form-status { margin-top: 1rem; font-size: .85rem; }
.form-status.ok { color: #4ade80; }
.form-status.err { color: #f87171; }

.uk-badge {
  display: inline-flex; align-items: center; gap: .5rem; border: 1px solid color-mix(in oklch, var(--gold) 40%, transparent);
  border-radius: 999px; padding: .4rem .9rem; font-size: .68rem; letter-spacing: .15em; text-transform: uppercase; color: var(--gold);
}
.uk-badge svg { width: 14px; height: 14px; }

/* ============ CTA band ============ */
.cta-band {
  text-align: center; padding: 4rem 1.5rem; border-radius: .75rem;
  border: 1px solid color-mix(in oklch, var(--gold) 30%, transparent);
  background: linear-gradient(180deg, color-mix(in oklch, var(--gold) 6%, transparent), transparent);
  margin-top: 5rem;
}
.cta-band h3 { font-family: var(--font-display); font-size: clamp(1.6rem,3.5vw,2.3rem); margin: 0 0 .6rem; }
.cta-band p { color: var(--muted-foreground); margin: 0 0 1.75rem; }
.cta-band .hero-buttons { margin-top: 0; }

/* ============ Breadcrumb / page intro strip ============ */
.page-intro { padding: 2.5rem 0 0; text-align: center; }
.page-intro .kicker { justify-content: center; }

/* ============ Footer ============ */
.site-footer { border-top: 1px solid color-mix(in oklch, var(--border) 50%, transparent); }
.site-footer-inner { max-width: 80rem; margin: 0 auto; padding: 3rem 1.25rem 2rem; }
@media(min-width:640px) { .site-footer-inner { padding: 3rem 1.5rem 2rem; } }
.footer-grid { display: grid; gap: 2.5rem; grid-template-columns: 1fr; }
@media(min-width:768px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2rem; } }
.footer-brand { display: flex; flex-direction: column; gap: .75rem; }
.footer-brand img { height: 56px; width: auto; }
.footer-brand p { font-size: .85rem; color: var(--muted-foreground); line-height: 1.6; max-width: 22rem; }
.footer-col h5 { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-col a, .footer-col li { font-size: .85rem; color: var(--muted-foreground); }
.footer-col a:hover { color: var(--gold); }
.footer-social { display: flex; gap: .75rem; margin-top: 1.25rem; }
.footer-social a {
  display: grid; place-items: center; height: 40px; width: 40px; border-radius: 999px;
  border: 1px solid color-mix(in oklch, var(--gold) 50%, transparent); color: var(--gold);
  transition: background .2s, color .2s;
}
.footer-social a:hover { background: var(--gold); color: var(--primary-foreground); }
.footer-social svg { width: 16px; height: 16px; }
.footer-bottom {
  margin-top: 2.5rem; padding-top: 1.75rem; border-top: 1px solid color-mix(in oklch, var(--border) 40%, transparent);
  display: flex; flex-direction: column; gap: .5rem; align-items: center; text-align: center;
  font-size: .75rem; letter-spacing: .05em; color: var(--muted-foreground);
}
@media(min-width:640px) { .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; } }
