/* ===== Ashthorne HiFi: Charcoal + Brass (static) ===== */

:root {
  --bg0: #090a0c;
  --bg1: #0e1013;
  --bg2: #13161b;
  --panel: rgba(255,255,255,0.03);
  --text: #e8e6e3;
  --muted: #bdb7ad;
  --brass: #c7a46b;   /* warm brass */
  --brass2: #d6bd8a;  /* lighter brass */
  --line: rgba(199,164,107,0.45);
  --shadow: rgba(0,0,0,0.55);
}

* { box-sizing: border-box; }

html { scroll-behaviour: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(1200px 800px at 20% 10%, rgba(199,164,107,0.06), transparent 60%),
    radial-gradient(900px 600px at 80% 20%, rgba(255,255,255,0.03), transparent 55%),
    linear-gradient(135deg, var(--bg0) 0%, var(--bg1) 40%, var(--bg2) 100%);
  color: var(--text);
  font-family: 'Cormorant Garamond', Georgia, serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Constrain content like Lanthorne (but allow hero full-width) */
.page {
  max-width: 860px;
  margin: 0 auto;
  padding: 2.5rem 1.75rem 4rem 1.75rem;
}

/* ===== Header ===== */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem 0 1.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 220px;
}

.brand img.logo {
  height: 42px;
  width: 42px;
  object-fit: contain;
  filter: drop-shadow(0 6px 18px rgba(0,0,0,0.45));
}

.brand .wordmark {
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
}

.brand .wordmark .name {
  font-size: 1.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--brass2);
  margin: 0;
  font-weight: 600;
}

.brand .wordmark .sub {
  font-size: 1.05rem;
  letter-spacing: 0.5px;
  color: rgba(232,230,227,0.85);
  margin: 0;
  font-weight: 400;
}

/* ===== Navigation ===== */
nav { position: relative; }

.nav-links {
  display: flex;
  gap: 1.35rem;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.nav-links a {
  color: rgba(232,230,227,0.92);
  text-decoration: none;
  font-size: 1.02rem;
  letter-spacing: 0.2px;
  transition: color 0.25s ease, opacity 0.25s ease;
  white-space: nowrap;
  opacity: 0.95;
}

.nav-links a:hover {
  color: var(--brass2);
  opacity: 1;
}

.nav-toggle {
  display: none;
  font-size: 1.8rem;
  color: rgba(232,230,227,0.95);
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  padding: 0.25rem 0.35rem;
}

/* ===== Hero ===== */
.hero {
  margin-top: 1.85rem;
}

.hero-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  background: var(--panel);
  box-shadow: 0 22px 55px var(--shadow);
}

.hero-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  filter: contrast(1.02) saturate(0.95);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.62) 62%, rgba(0,0,0,0.82) 100%);
}

.hero-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 2.2rem 2rem 2rem 2rem;
}

h2 {
  font-size: 3.05rem;
  font-weight: 300;
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0.1px;
  max-width: 760px;
}

.tagline {
  color: var(--brass2);
  font-weight: 500;
  font-size: 1.18rem;
  margin-top: 0.8rem;
  margin-bottom: 0;
  font-style: italic;
  opacity: 0.98;
}

/* ===== Sections ===== */
section {
  margin-top: 2.75rem;
  padding-top: 2.1rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  animation: fadeIn 1.0s ease-in both;
}

h3 {
  color: var(--brass2);
  font-size: 1.85rem;
  margin: 0 0 1rem 0;
  font-weight: 700;
}

p, li {
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.85;
  margin: 0.65rem 0;
  color: rgba(232,230,227,0.92);
}

.small {
  color: rgba(232,230,227,0.78);
  font-size: 1.02rem;
}

/* ===== Service grid (3 columns on desktop, 1 on mobile) ===== */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 2.75rem;
  row-gap: 1.1rem;
  margin-top: 1.15rem;
}

.service-col h4 {
  margin: 0 0 0.8rem 0;
  color: var(--brass2);
  font-size: 1.35rem;
  font-weight: 700;
}

.service-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-col li {
  position: relative;
  padding-left: 1.15rem;
  margin: 0.55rem 0;
  color: rgba(232,230,227,0.90);
}

.service-col li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 6px;
  height: 6px;
  background-color: var(--brass);
  border-radius: 50%;
  opacity: 0.95;
}

/* ===== Button ===== */
.button {
  display: inline-block;
  margin-top: 1.25rem;
  padding: 0.75rem 1.55rem;
  border: 1px solid var(--line);
  color: rgba(232,230,227,0.95);
  background: transparent;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  font-size: 1.05rem;
}

.button:hover {
  background: rgba(199,164,107,0.14);
  border-color: rgba(199,164,107,0.65);
  color: rgba(255,255,255,0.98);
}

/* ===== Contact card ===== */
.contact-card {
  border: 1px solid rgba(255,255,255,0.07);
  padding: 1.6rem 1.6rem;
  border-radius: 10px;
  background: rgba(255,255,255,0.03);
}

.contact-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  font-size: 1.12rem;
  margin: 0.95rem 0;
}

.contact-label {
  font-weight: 700;
  color: var(--brass2);
  min-width: 92px;
}

.contact-card a {
  color: rgba(232,230,227,0.92);
  text-decoration: underline;
}
.contact-card a:hover { color: var(--brass2); }

/* ===== Footer ===== */
footer {
  margin-top: 4.25rem;
  padding-top: 2.35rem;
  text-align: centre;
  font-size: 0.92rem;
  color: rgba(232,230,227,0.55);
  position: relative;
}

footer::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: rgba(199,164,107,0.55);
  position: absolute;
  top: 0;
  left: 0;
}

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .services-grid { grid-template-columns: 1fr; row-gap: 1.6rem; }
  .hero-card img { height: 380px; }
}

@media (max-width: 768px) {
  .page { padding: 1.5rem 1.2rem 3.25rem 1.2rem; }

  header { padding: 0.9rem 0 1.2rem 0; }
  .nav-toggle { display: block; }

  .nav-links {
    display: none;
    flex-direction: column;
    background: rgba(10, 11, 13, 0.96);
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    padding: 1rem 1rem;
    border: 1px solid rgba(199,164,107,0.55);
    border-radius: 10px;
    z-index: 1000;
    animation: fadeSlideDown 0.25s ease-out;
    box-shadow: 0 16px 40px rgba(0,0,0,0.55);
    width: 220px;
    text-align: right;
  }

  .nav-links a { font-size: 1.18rem; padding: 0.35rem 0; }
  .nav-links.show { display: flex; }

  h2 { font-size: 2.35rem; }
  .hero-content { padding: 1.6rem 1.35rem 1.5rem 1.35rem; }
  .hero-card img { height: 430px; } /* tall on mobile like your mock */
}

@keyframes fadeSlideDown {
  0% { opacity: 0; transform: translateY(-8px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
