/* ============================================================
   Cloud City Photography — Version 1
   Dark · elegant · gold · mobile-first
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --bg: #0f1115;          /* deep charcoal-black */
  --bg-alt: #15181f;      /* lifted section */
  --surface: #191d25;     /* cards */
  --surface-2: #1f242d;   /* inputs / hover */
  --ink: #f4f0e8;         /* warm off-white */
  --ink-soft: #c5c9d2;
  --muted: #8b919d;
  --line: #2a2f39;
  --line-soft: #232831;

  --gold: #c9a24c;        /* refined gold */
  --gold-bright: #e3c47a;
  --gold-deep: #a8852f;
  --gold-soft: rgba(201, 162, 76, .12);
  --gold-line: rgba(201, 162, 76, .35);

  --radius: 14px;
  --radius-sm: 9px;
  --shadow: 0 1px 2px rgba(0, 0, 0, .4), 0 16px 40px rgba(0, 0, 0, .35);
  --maxw: 1120px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: 'Cormorant Garamond', Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink-soft);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  font-size: 17px;
}

h1, h2, h3 { color: var(--ink); line-height: 1.12; margin: 0 0 .5em; }
h1, h2 { font-family: var(--font-display); font-weight: 600; letter-spacing: .005em; }
h1 { font-size: clamp(2.6rem, 6.5vw, 4.4rem); }
h2 { font-size: clamp(1.9rem, 4.2vw, 2.9rem); }
h3 { font-size: 1.2rem; font-weight: 650; letter-spacing: -0.01em; }
p { margin: 0 0 1rem; color: var(--ink-soft); }
a { color: var(--gold-bright); text-decoration: none; }
a:hover { color: var(--gold); }
img { max-width: 100%; display: block; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.eyebrow {
  display: inline-block; font-size: .76rem; font-weight: 600; letter-spacing: .22em;
  text-transform: uppercase; color: var(--gold); margin-bottom: .9rem;
}
.lead { font-size: 1.18rem; color: var(--ink-soft); max-width: 60ch; }
.center { text-align: center; }
.center-links { justify-content: center; max-width: 640px; margin-inline: auto; }
.muted { color: var(--muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; font-weight: 600; font-size: .98rem; letter-spacing: .02em;
  padding: .85rem 1.6rem; border-radius: var(--radius-sm);
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  color: #1a1407; border: 1px solid var(--gold);
  cursor: pointer; transition: filter .15s ease, transform .05s ease, box-shadow .15s ease;
}
.btn:hover { filter: brightness(1.07); color: #1a1407; box-shadow: 0 8px 24px rgba(201, 162, 76, .25); }
.btn:active { transform: translateY(1px); }
.btn-ghost {
  background: transparent; color: var(--gold-bright);
  border: 1px solid var(--gold-line); box-shadow: none;
}
.btn-ghost:hover { background: var(--gold-soft); color: var(--gold-bright); box-shadow: none; }
.btn-small { padding: .55rem 1.1rem; font-size: .9rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: .9rem; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(15, 17, 21, .8);
  backdrop-filter: saturate(150%) blur(10px);
  border-bottom: 1px solid var(--line-soft);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.brand { display: flex; align-items: center; gap: .55rem; color: var(--ink); font-size: 1.08rem; letter-spacing: .01em; }
.brand:hover { color: var(--ink); }
.brand-mark { font-size: 1.4rem; filter: grayscale(1) brightness(2.4); }
.brand-name { font-weight: 500; }
.brand-name strong { color: var(--gold); font-weight: 700; }

.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; font-size: 1.5rem; line-height: 1;
  background: transparent; border: 1px solid var(--line); border-radius: var(--radius-sm);
  color: var(--ink); cursor: pointer;
}
.site-nav { display: none; }
.site-nav.open {
  display: flex; flex-direction: column; gap: .25rem;
  position: absolute; left: 0; right: 0; top: 70px;
  background: var(--bg-alt); border-bottom: 1px solid var(--line);
  padding: .75rem 22px 1.25rem; box-shadow: var(--shadow);
}
.site-nav a {
  color: var(--ink-soft); font-weight: 500; padding: .6rem .2rem; border-radius: 6px;
}
.site-nav a:hover { color: var(--gold-bright); }
.site-nav a.active { color: var(--gold); font-weight: 600; }
.site-nav .nav-home { font-size: 1.2rem; }
.site-nav .btn { color: #1a1407; text-align: center; margin-top: .4rem; }
.site-nav .btn:hover { color: #1a1407; }

@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .site-nav {
    display: flex !important; flex-direction: row; align-items: center; gap: 1.3rem;
    position: static; padding: 0; border: 0; box-shadow: none; background: transparent;
  }
  .site-nav a { padding: .3rem 0; font-size: .96rem; }
  .site-nav .btn { margin-top: 0; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(900px 500px at 78% -5%, rgba(201, 162, 76, .16), transparent 60%),
    radial-gradient(700px 400px at 0% 110%, rgba(201, 162, 76, .06), transparent 55%),
    linear-gradient(180deg, #0c0e12 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--line-soft);
  padding: clamp(3rem, 8vw, 5.5rem) 0 clamp(3rem, 8vw, 5.5rem);
}
.hero-grid { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 880px) { .hero-grid { grid-template-columns: 1.05fr .95fr; gap: 3.5rem; } }
.hero h1 { max-width: 14ch; }
.hero .lead { margin-bottom: 1.8rem; }
.hero .btn-row { margin-top: .5rem; }
.hero-figure { margin: 0; }
.hero-figure .ph-box { aspect-ratio: 4 / 5; box-shadow: var(--shadow); }
@media (max-width: 879px) { .hero-figure .ph-box { aspect-ratio: 4 / 3; } }

/* ---------- Sections ---------- */
.section { padding: clamp(3rem, 7.5vw, 5.5rem) 0; }
.section-alt { background: var(--bg-alt); border-block: 1px solid var(--line-soft); }
.section-head { max-width: 62ch; margin-bottom: 2.25rem; }
.section-head.center { margin-inline: auto; }

/* ---------- Grids & cards ---------- */
.grid { display: grid; gap: 1.25rem; }
.grid-3 { grid-template-columns: 1fr; }
.grid-2 { grid-template-columns: 1fr; }
@media (min-width: 680px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } .grid-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }

.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.7rem; box-shadow: var(--shadow); transition: border-color .15s ease, transform .15s ease;
}
.card:hover { border-color: var(--gold-line); transform: translateY(-2px); }
.card h3 { margin-bottom: .45rem; }
.card p { margin-bottom: .8rem; font-size: .98rem; }
.card .card-link { font-weight: 600; font-size: .95rem; color: var(--gold-bright); }
.card-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 50px; height: 50px; border-radius: 12px; font-size: 1.45rem;
  background: var(--gold-soft); border: 1px solid var(--gold-line); margin-bottom: 1.1rem;
}

/* ---------- Image placeholders ---------- */
.gallery { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 600px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 940px) { .gallery.gallery-3 { grid-template-columns: repeat(3, 1fr); } }

figure.ph { margin: 0; }
.ph-box {
  position: relative; aspect-ratio: 4 / 3; border-radius: var(--radius);
  border: 1px solid var(--gold-line);
  background:
    radial-gradient(120% 120% at 50% 0%, rgba(201, 162, 76, .07), transparent 60%),
    repeating-linear-gradient(45deg, #161a21 0 16px, #131720 16px 32px);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 1rem; gap: .5rem; color: var(--muted);
}
.ph-box.tall { aspect-ratio: 3 / 4; }
.ph-box.wide { aspect-ratio: 16 / 9; }
.ph-tag {
  font-size: .68rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold); background: rgba(201, 162, 76, .08); border: 1px solid var(--gold-line);
  padding: .25rem .7rem; border-radius: 999px;
}
.ph-hint { font-size: .85rem; color: var(--muted); max-width: 26ch; }
figure.ph figcaption { font-size: .9rem; color: var(--ink-soft); margin-top: .6rem; font-weight: 500; }

/* ---------- Service area ---------- */
.area-card h3 { color: var(--gold-bright); margin-bottom: .7rem; }
.area-towns { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: .35rem 1.1rem; }
.area-towns li { position: relative; padding-left: 1rem; color: var(--ink-soft); font-size: .96rem; }
.area-towns li::before { content: "\2022"; position: absolute; left: 0; color: var(--gold); }

/* ---------- Feature / two-column ---------- */
.split { display: grid; gap: 2.25rem; align-items: center; }
@media (min-width: 860px) { .split { grid-template-columns: 1fr 1fr; } .split.reverse > :first-child { order: 2; } }

/* ---------- List with checks ---------- */
.checks { list-style: none; padding: 0; margin: 1.1rem 0; }
.checks li { position: relative; padding-left: 1.9rem; margin-bottom: .65rem; color: var(--ink-soft); }
.checks li::before {
  content: "\2713"; position: absolute; left: 0; top: 0;
  color: var(--gold); font-weight: 700;
}

/* ---------- Pricing ---------- */
.price-grid { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 720px) { .price-grid { grid-template-columns: repeat(3, 1fr); } }
.price-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.9rem; box-shadow: var(--shadow); display: flex; flex-direction: column;
}
.price-card.featured {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold-line), 0 20px 50px rgba(0, 0, 0, .45);
  background: linear-gradient(180deg, rgba(201, 162, 76, .06), var(--surface) 40%);
}
.price-badge {
  align-self: flex-start; font-size: .68rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--gold); background: var(--gold-soft);
  border: 1px solid var(--gold-line);
  padding: .28rem .7rem; border-radius: 999px; margin-bottom: .85rem;
}
.price-amount { font-family: var(--font-display); font-size: 2.6rem; font-weight: 600; color: var(--ink); margin: .25rem 0; }
.price-amount span { font-family: var(--font); font-size: .95rem; font-weight: 500; color: var(--muted); }
.price-amount .amt { font-family: var(--font-display); font-size: 2.4rem; font-weight: 600; color: var(--ink); }
.price-amount .amt-custom { font-size: 1.7rem; color: var(--gold-bright); }
.price-cat { margin: 2.75rem 0 1.25rem; color: var(--gold-bright); }
.price-cat:first-child { margin-top: 0; }
.price-card .btn { margin-top: auto; text-align: center; }
.price-note {
  margin-top: 2rem; padding: 1.1rem 1.35rem; background: var(--gold-soft);
  border: 1px solid var(--gold-line);
  border-radius: var(--radius-sm); color: var(--ink-soft); font-size: .95rem;
}

/* ---------- Contact form ---------- */
.form-wrap { display: grid; gap: 2rem; }
@media (min-width: 860px) { .form-wrap { grid-template-columns: 1.2fr .8fr; } }
.field { margin-bottom: 1.15rem; }
.field label { display: block; font-weight: 600; font-size: .92rem; margin-bottom: .4rem; color: var(--ink); }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; color: var(--ink);
  padding: .8rem .9rem; border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: var(--surface-2); transition: border-color .15s ease, box-shadow .15s ease;
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-soft);
}
.field textarea { min-height: 130px; resize: vertical; }
.form-note { font-size: .85rem; color: var(--muted); margin-top: .5rem; }
.contact-side .card { margin-bottom: 1rem; }
.contact-line { display: flex; gap: .6rem; align-items: flex-start; margin-bottom: .6rem; color: var(--ink-soft); }
.contact-line strong { color: var(--ink); }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative; overflow: hidden;
  background:
    radial-gradient(600px 300px at 50% -40%, rgba(201, 162, 76, .18), transparent 60%),
    linear-gradient(135deg, #14171d, #1b1f27);
  border: 1px solid var(--gold-line);
  color: var(--ink); border-radius: var(--radius); padding: clamp(2.25rem, 5vw, 3.5rem);
  text-align: center;
}
.cta-band h2 { color: var(--ink); }
.cta-band p { color: var(--ink-soft); max-width: 50ch; margin-inline: auto; }
.cta-band .btn { margin-top: .75rem; }

/* ---------- Footer ---------- */
.site-footer { background: #0a0c0f; color: var(--ink-soft); border-top: 1px solid var(--line-soft); margin-top: 0; }
.footer-grid {
  display: grid; gap: 1.85rem; grid-template-columns: 1fr;
  padding: 3.25rem 22px 1.75rem;
}
@media (min-width: 760px) { .footer-grid { grid-template-columns: 2fr 1fr 1.3fr; } }
.site-footer h4 { color: var(--gold); font-size: .76rem; letter-spacing: .16em; text-transform: uppercase; margin: 0 0 .95rem; }
.site-footer a { color: var(--ink-soft); }
.site-footer a:hover { color: var(--gold-bright); }
.footer-nav { display: flex; flex-direction: column; gap: .55rem; }
.footer-brand .brand-name { color: var(--ink); }
.footer-brand .brand-name strong { color: var(--gold); }
.footer-brand p { color: var(--muted); font-size: .95rem; max-width: 34ch; }
.footer-bottom {
  border-top: 1px solid var(--line-soft); padding: 1.2rem 22px; font-size: .85rem; color: var(--muted);
  display: flex; flex-wrap: wrap; gap: .5rem; justify-content: space-between;
}

.footer-legal a { color: var(--muted); }
.footer-legal a:hover { color: var(--gold-bright); }

/* ---------- Prose (legal / long-form) ---------- */
.prose { max-width: 70ch; }
.prose h2 { font-family: var(--font-display); color: var(--gold-bright); font-size: 1.5rem; margin: 2rem 0 .6rem; }
.prose p { color: var(--ink-soft); margin: 0 0 1rem; line-height: 1.7; }
.prose a { color: var(--gold-bright); text-decoration: underline; }

/* ---------- Utilities ---------- */
.stack > * + * { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.skip-link { position: absolute; left: -999px; }
.skip-link:focus {
  left: 12px; top: 10px; background: var(--surface); color: var(--ink); padding: .5rem .9rem; border-radius: 6px;
  border: 1px solid var(--gold); z-index: 100;
}
