/* =========================================================================
   Devonshire Gold: Light theme (Cream + Deep Gold)
   ========================================================================= */

:root {
  --bg:           #F5F0E6;   /* cream / ivory */
  --bg-2:         #FAF6EE;   /* card / panel */
  --bg-3:         #FFFFFF;   /* surface peak */
  --bg-dark:      #1A1A1F;   /* dark anchor (CTA + footer) */
  --bg-dark-2:    #131318;   /* footer base */
  --line:         #E2DBC8;   /* warm hairline */
  --line-2:       #CFC5AB;   /* warm hairline darker */
  --line-dark:    #2F2F38;   /* hairline on dark anchors */
  --gold:         #B8893E;   /* deep burnished gold */
  --gold-light:   #D8B26A;   /* champagne highlight */
  --gold-deep:    #8E6A2E;   /* darkest gold */
  --text:         #1A1A1F;   /* charcoal headline */
  --text-2:       #2F2F38;   /* body */
  --text-light:   #F5F0E6;   /* light text on dark anchors */
  --muted:        #6B6760;   /* warm grey muted */
  --muted-dark:   #9A98A0;   /* muted on dark */
  --shadow:       0 1px 2px rgba(26, 18, 4, 0.04), 0 8px 24px -12px rgba(26, 18, 4, 0.08);
  --shadow-hover: 0 2px 4px rgba(26, 18, 4, 0.06), 0 16px 40px -16px rgba(184, 137, 62, 0.18);

  --serif: 'Cormorant Garamond', 'Trajan Pro', 'Times New Roman', Georgia, serif;
  --sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --container: 1240px;
  --gap: 28px;
  --radius: 4px;
  --transition: 240ms ease;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
img, svg { display: block; max-width: 100%; height: auto; }
button { font: inherit; border: none; background: none; cursor: pointer; color: inherit; }
a { color: inherit; text-decoration: none; }
ul, ol { padding: 0; margin: 0; list-style: none; }
input, textarea, select { font: inherit; color: inherit; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text-2);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, .serif {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.18;
  color: var(--text);
  margin: 0 0 .5em;
  letter-spacing: 0.5px;
}
h1 { font-size: clamp(2.6rem, 5vw, 4.4rem); letter-spacing: 1px; }
h2 { font-size: clamp(2rem, 3.6vw, 2.8rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 1.7rem); }
h4 { font-size: 1.18rem; letter-spacing: 1px; }
p  { margin: 0 0 1.1em; }
.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: inline-block;
}
.gold { color: var(--gold); }
.muted { color: var(--muted); }
.lede { font-size: 1.18rem; color: var(--text-2); max-width: 60ch; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding: 0 28px; }
section { padding: clamp(64px, 9vw, 120px) 0; }
section.tight { padding: clamp(48px, 6vw, 80px) 0; }
section.cream-2 { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.grid { display: grid; gap: var(--gap); }
.grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid.cols-4 { grid-template-columns: repeat(4, 1fr); }

.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: center; }

@media (max-width: 900px) {
  .grid.cols-2, .grid.cols-3, .grid.cols-4 { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 28px;
  font-family: var(--sans);
  font-weight: 500; font-size: 13px;
  letter-spacing: 2px; text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  color: #1A1A1F;
  border: 1px solid var(--gold);
  box-shadow: 0 2px 6px rgba(184, 137, 62, 0.25);
}
.btn-primary:hover {
  background: linear-gradient(180deg, var(--gold), var(--gold-deep));
  color: var(--text-light);
  transform: translateY(-1px);
  box-shadow: 0 12px 28px -10px rgba(184, 137, 62, 0.45);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--gold);
}
.btn-ghost:hover {
  border-color: var(--gold-deep);
  background: rgba(184, 137, 62, 0.08);
  color: var(--gold-deep);
}
.btn-text {
  padding: 0; color: var(--gold);
  font-size: 13px; letter-spacing: 2px; text-transform: uppercase;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
}
.btn-text:hover { color: var(--gold-deep); border-color: var(--gold-deep); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(245, 240, 230, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: background var(--transition);
}
.nav-row { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; }
.brand { display: flex; align-items: center; gap: 14px; }
.brand img { height: 96px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 13px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-2); position: relative;
  padding: 6px 0;
  transition: color var(--transition);
}
.nav-links a:hover, .nav-links a.is-active { color: var(--gold-deep); }
.nav-links a.is-active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px; background: var(--gold);
}
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-phone {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; letter-spacing: 1.5px; color: var(--gold-deep); font-weight: 500;
}
.nav-phone .dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; box-shadow: 0 0 10px var(--gold); }

/* Mobile nav */
.nav-toggle { display: none; }
.site-nav-mobile { display: none; }
@media (max-width: 980px) {
  .nav-links, .nav-phone { display: none; }
  .nav-toggle {
    display: flex; flex-direction: column; gap: 5px;
    width: 32px; height: 32px;
    align-items: center; justify-content: center;
  }
  .nav-toggle span { display: block; width: 22px; height: 1px; background: var(--gold-deep); transition: var(--transition); }
  .site-nav-mobile {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--bg-2); border-bottom: 1px solid var(--line);
    padding: 24px 28px;
  }
  .site-nav-mobile.open { display: block; }
  .site-nav-mobile a {
    display: block; padding: 14px 0;
    font-size: 14px; letter-spacing: 2px; text-transform: uppercase;
    border-bottom: 1px solid var(--line);
    color: var(--text-2);
  }
  .site-nav-mobile a:last-child { border-bottom: none; }
  .nav-cta .btn-primary { display: none; }
  .brand img { height: 72px; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(80px, 12vw, 160px) 0 clamp(96px, 14vw, 200px);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 800px 400px at 80% 30%, rgba(184, 137, 62, 0.08), transparent 60%),
    radial-gradient(ellipse 600px 300px at 10% 70%, rgba(184, 137, 62, 0.05), transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 60px;
  align-items: center;
  position: relative; z-index: 1;
}
@media (max-width: 980px) { .hero-grid { grid-template-columns: 1fr; } }

.hero h1 { color: var(--text); }
.hero h1 .gold-accent { color: var(--gold-deep); font-style: italic; font-weight: 400; }
.hero p.lede { color: var(--text-2); margin-top: 24px; max-width: 56ch; }
.hero-actions { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }

.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
}
.hero-visual img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.hero-visual::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(184, 137, 62, 0.18));
  pointer-events: none;
}

/* USP strip: warm white band */
.usp-strip {
  background: var(--bg-3);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
}
.usp-strip .grid { gap: 8px; }
.usp-item {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 16px;
}
.usp-item .icon {
  width: 38px; height: 38px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--gold); border-radius: 50%;
  color: var(--gold-deep);
  background: rgba(184, 137, 62, 0.06);
}
.usp-item .icon svg { width: 18px; height: 18px; }
.usp-item .label {
  font-size: 13px; letter-spacing: 1px; text-transform: uppercase;
  color: var(--text); font-weight: 500;
}
.usp-item .sub { display: block; font-size: 12px; color: var(--muted); letter-spacing: 0.5px; text-transform: none; margin-top: 2px; }

/* ---------- Section heading ---------- */
.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-head .eyebrow { display: block; }
.section-head h2 { margin-bottom: 18px; color: var(--text); }
.section-head p { color: var(--muted); font-size: 1.05rem; }

/* ---------- Cards (white on cream) ---------- */
.card {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 30px;
  transition: var(--transition);
  position: relative;
  box-shadow: var(--shadow);
}
.card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}
.card .icon-large {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  color: var(--gold-deep);
  background: rgba(184, 137, 62, 0.08);
  border: 1px solid var(--gold);
  border-radius: 50%;
}
.card .icon-large svg { width: 24px; height: 24px; }
.card h3 { color: var(--text); margin-bottom: 12px; }
.card p { color: var(--muted); font-size: 0.96rem; margin-bottom: 18px; }
.card .card-link {
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold-deep); display: inline-flex; gap: 8px; align-items: center; font-weight: 500;
}
.card .card-link::after { content: "\2192"; transition: transform var(--transition); }
.card:hover .card-link::after { transform: translateX(4px); }

/* ---------- Steps ---------- */
.steps { counter-reset: step; }
.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.step:last-child { border-bottom: none; }
.step .num {
  font-family: var(--serif);
  font-size: 56px;
  color: var(--gold);
  line-height: 1;
  font-weight: 400;
}
.step h3 { margin-bottom: 8px; color: var(--text); }
.step p { color: var(--muted); margin: 0; max-width: 60ch; }

/* ---------- Live prices strip ---------- */
.prices-strip {
  background: var(--bg-3);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  font-size: 13px;
}
.prices-strip .container {
  display: flex; flex-wrap: wrap; align-items: center; gap: 32px;
}
.prices-strip .label {
  color: var(--gold-deep);
  letter-spacing: 2px; text-transform: uppercase; font-size: 11px; font-weight: 500;
  display: inline-flex; gap: 8px; align-items: center;
}
.prices-strip .label .live-dot {
  width: 7px; height: 7px; background: var(--gold); border-radius: 50%;
  box-shadow: 0 0 10px var(--gold);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.price-pill {
  display: inline-flex; align-items: baseline; gap: 8px;
  color: var(--text);
}
.price-pill .name { color: var(--muted); font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; }
.price-pill .val { color: var(--gold-deep); font-family: var(--serif); font-size: 17px; font-weight: 500; }
.price-pill .ccy { color: var(--muted); font-size: 11px; }

.price-table {
  width: 100%; border-collapse: collapse;
  background: var(--bg-3); border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.price-table th, .price-table td {
  padding: 22px 24px; text-align: left;
  border-bottom: 1px solid var(--line);
}
.price-table th {
  font-family: var(--sans); font-weight: 500; font-size: 11px;
  letter-spacing: 2px; text-transform: uppercase; color: var(--muted);
  background: var(--bg-2);
}
.price-table td { font-size: 1rem; color: var(--text-2); }
.price-table td.metal { font-family: var(--serif); font-size: 1.4rem; color: var(--text); }
.price-table td.spot  { font-family: var(--serif); font-size: 1.6rem; color: var(--gold-deep); font-weight: 500; }
.price-table td.unit  { color: var(--muted); font-size: 0.85rem; }
.price-table tr:last-child td { border-bottom: none; }

/* ---------- Forms ---------- */
.form {
  background: var(--bg-3); border: 1px solid var(--line);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.form h3 { color: var(--text); }
.field { margin-bottom: 22px; }
.field label {
  display: block; margin-bottom: 8px;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted); font-weight: 500;
}
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px;
  background: var(--bg); color: var(--text);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  transition: var(--transition);
  font-size: 15px;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184, 137, 62, 0.18);
}
.field textarea { min-height: 130px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .field-row { grid-template-columns: 1fr; } }

/* ---------- Contact details ---------- */
.contact-card {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.contact-card:last-child { border-bottom: none; }
.contact-card .icon {
  color: var(--gold-deep); display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
}
.contact-card .icon svg { width: 18px; height: 18px; }
.contact-card .label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; font-weight: 500; }
.contact-card .value { color: var(--text); font-size: 1.05rem; line-height: 1.5; }
.contact-card .value a { color: var(--gold-deep); border-bottom: 1px solid var(--gold); transition: var(--transition); }
.contact-card .value a:hover { color: var(--gold); border-color: var(--gold-deep); }

/* ---------- Value list ---------- */
.value-list { display: grid; gap: 26px; }
.value-list li { padding-left: 28px; position: relative; color: var(--text-2); }
.value-list li::before {
  content: ""; position: absolute; left: 0; top: 10px;
  width: 12px; height: 1px; background: var(--gold);
}
.value-list li strong { display: block; color: var(--text); font-family: var(--serif); font-weight: 500; font-size: 1.18rem; margin-bottom: 4px; }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.stat { background: var(--bg-3); padding: 36px 24px; text-align: center; }
.stat .num {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  color: var(--gold-deep);
  line-height: 1;
  margin-bottom: 8px;
  font-weight: 500;
}
.stat .label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); }
@media (max-width: 800px) { .stats { grid-template-columns: repeat(2, 1fr); } }

/* ---------- CTA band (cream, matches site) ---------- */
.cta-band {
  background:
    radial-gradient(ellipse 700px 350px at center, rgba(184, 137, 62, 0.10), transparent 70%),
    var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 90px 0;
  text-align: center;
  color: var(--text-2);
}
.cta-band h2 { color: var(--text); max-width: 22ch; margin: 0 auto 20px; }
.cta-band p { color: var(--muted); margin-bottom: 32px; max-width: 50ch; margin-inline: auto; }
.cta-band .actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-band .eyebrow { color: var(--gold-deep); }

/* ---------- Footer (cream, matches site) ---------- */
.site-footer {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  padding: 70px 0 28px;
  color: var(--muted);
  font-size: 14px;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand img { height: 110px; margin-bottom: 18px; }
.footer-brand p { font-size: 13px; max-width: 32ch; color: var(--muted); }
.footer-col h5 {
  font-family: var(--sans); font-size: 11px; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold-deep); margin-bottom: 18px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col a { color: var(--text-2); transition: var(--transition); }
.footer-col a:hover { color: var(--gold-deep); }
.footer-bottom {
  margin-top: 56px; padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 12px; color: var(--muted);
  letter-spacing: 0.5px;
}

/* ---------- Page hero ---------- */
.page-hero {
  position: relative;
  padding: clamp(80px, 10vw, 130px) 0 clamp(40px, 6vw, 70px);
  text-align: center;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background: var(--bg-2);
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 700px 350px at 50% 0%, rgba(184, 137, 62, 0.10), transparent 70%);
  pointer-events: none;
}
.page-hero-img {
  position: absolute; inset: 0;
  z-index: 0;
  background-size: cover; background-position: center;
}
.page-hero-img::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(245, 240, 230, 0.78) 0%, rgba(245, 240, 230, 0.95) 100%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .eyebrow { display: block; }
.page-hero h1 { margin-bottom: 16px; color: var(--text); }
.page-hero p.lede { margin: 0 auto; color: var(--text-2); }

/* ---------- Service blocks (with photo visuals) ---------- */
.service-block {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  padding: clamp(48px, 7vw, 96px) 0;
  border-bottom: 1px solid var(--line);
}
.service-block:nth-child(even) > div:first-child { order: 2; }
.service-block:last-child { border-bottom: none; }
.service-block .visual {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  position: relative; overflow: hidden;
  box-shadow: var(--shadow);
}
.service-block .visual img { width: 100%; height: 100%; object-fit: cover; display: block; }
.service-block .visual::after {
  content: "";
  position: absolute; inset: 0;
  box-shadow: inset 0 0 0 1px rgba(184, 137, 62, 0.20);
  pointer-events: none;
  border-radius: var(--radius);
}
.service-block h2 { color: var(--text); }
.service-block p { color: var(--text-2); }
.service-block ul { margin-top: 20px; display: grid; gap: 10px; }
.service-block ul li {
  position: relative; padding-left: 22px;
  color: var(--text-2);
}
.service-block ul li::before {
  content: ""; position: absolute; left: 0; top: 11px;
  width: 10px; height: 1px; background: var(--gold);
}
@media (max-width: 900px) {
  .service-block { grid-template-columns: 1fr; }
  .service-block:nth-child(even) > div:first-child { order: 0; }
}

/* ---------- Detail rows ---------- */
.detail-row {
  display: grid; grid-template-columns: 220px 1fr; gap: 32px;
  padding: 22px 0; border-bottom: 1px solid var(--line);
}
.detail-row .key { color: var(--gold-deep); font-size: 12px; letter-spacing: 2px; text-transform: uppercase; font-weight: 500; }
.detail-row .val { color: var(--text-2); }
@media (max-width: 700px) { .detail-row { grid-template-columns: 1fr; gap: 6px; } }

/* ---------- Notice / disclaimer ---------- */
.notice {
  font-size: 12px; color: var(--muted);
  border-left: 2px solid var(--gold);
  padding: 8px 14px;
  background: rgba(184, 137, 62, 0.05);
  margin: 12px 0;
  letter-spacing: 0.3px;
}

/* ---------- Reveal-on-scroll ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 36px; }
