:root {
  --bg: #101a15;
  --panel: #16221c;
  --forest: #1b2e24;
  --gold: #c9a85c;
  --cream: #f6f1e8;
  --muted: #aeb9b2;
  --ink: #14201a;
  --amber: #e39b3c;
  --line: rgba(201, 168, 92, 0.3);
  --pad-x: clamp(1.5rem, 5vw, 3.5rem);
  --pad-y: clamp(2.5rem, 6vw, 4rem);
  --max: 720px;
  --max-wide: 1100px;
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Source Sans 3", "Helvetica Neue", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--cream);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

main {
  flex: 1;
  width: 100%;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
}

/* ——— Header ——— */
.site-header {
  background: #fff;
  position: relative;
  z-index: 20;
}

.logo-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem var(--pad-x);
  background: #fff;
}

.brand {
  display: block;
  width: min(380px, 75vw);
  line-height: 0;
}

.brand img {
  width: 100%;
  height: auto;
}

.nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 1.75rem;
  padding: 1rem var(--pad-x);
  background: var(--forest);
}

.nav a {
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  color: rgba(246, 241, 232, 0.92);
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--gold);
}

/* ——— Shared content shell ——— */
.wrap {
  width: 100%;
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

.wrap-wide {
  width: 100%;
  max-width: var(--max-wide);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

.section {
  padding-top: var(--pad-y);
  padding-bottom: var(--pad-y);
}

.section-tight {
  padding-top: clamp(2rem, 4vw, 3rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
}

.section-muted {
  background: var(--panel);
}

h1 {
  margin: 0 0 1rem;
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3.2vw, 2.25rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--gold);
  letter-spacing: -0.02em;
}

h2 {
  margin: 0 0 0.75rem;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.5vw, 1.6rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--gold);
}

p {
  margin: 0 0 1.1rem;
  color: var(--muted);
  max-width: 38rem;
}

p:last-child {
  margin-bottom: 0;
}

.lead {
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--muted);
  max-width: 36rem;
}

.text-link {
  color: var(--gold);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(201, 168, 92, 0.45);
}

.text-link:hover {
  border-bottom-color: var(--gold);
}

/* ——— Buttons ——— */
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  margin-top: 1.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.65rem 1.35rem;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--amber);
  color: var(--ink);
}

.btn-primary:hover {
  background: #eba04a;
}

.btn-secondary {
  background: transparent;
  color: var(--cream);
  border-color: rgba(246, 241, 232, 0.35);
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ——— Home: photo block (NO text on image) ——— */
.photo-block {
  position: relative;
  z-index: 0;
  width: 100%;
  height: min(48vh, 440px);
  overflow: hidden;
  background: #0a0a0a;
}

.photo-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}

.intro {
  position: relative;
  z-index: 1;
  background: var(--bg);
  margin: 0;
  padding-top: var(--pad-y);
  padding-bottom: var(--pad-y);
}

.intro .actions {
  margin-top: 1.5rem;
}

.home-next {
  border-top: 1px solid var(--line);
}

.link-list {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.link-list a {
  color: var(--gold);
  font-weight: 700;
  text-decoration: none;
}

.link-list a:hover {
  text-decoration: underline;
}

/* ——— Work ——— */
.gallery {
  display: grid;
  gap: 1rem;
}

@media (min-width: 760px) {
  .gallery {
    grid-template-columns: 1.15fr 0.85fr;
    grid-template-rows: 1fr 1fr;
    min-height: 520px;
  }

  .gallery figure:first-child {
    grid-row: 1 / -1;
  }
}

.gallery figure {
  margin: 0;
  background: #000;
  overflow: hidden;
  min-height: 220px;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.after-gallery {
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

/* ——— Services ——— */
.stack {
  display: grid;
  gap: 2.25rem;
}

.stack article {
  padding-bottom: 2.25rem;
  border-bottom: 1px solid var(--line);
}

.stack article:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.faq details {
  border-bottom: 1px solid var(--line);
  padding: 1rem 0;
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--cream);
}

.faq details p {
  margin-top: 0.6rem;
}

/* ——— Contact ——— */
.contact-card {
  margin: 0 0 2.5rem;
  padding: 0 0 2rem;
  border-bottom: 1px solid var(--line);
}

.contact-card .row {
  margin: 0 0 1.15rem;
}

.contact-card .row:last-child {
  margin-bottom: 0;
}

.contact-card .label {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.contact-card .value {
  margin: 0;
  color: var(--cream);
  font-size: 1.1rem;
}

.contact-card a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(201, 168, 92, 0.4);
}

.contact-card a:hover {
  border-bottom-color: var(--gold);
}

.form-title {
  margin-bottom: 0.5rem;
}

.quote-form {
  margin-top: 1.75rem;
  max-width: 28rem;
}

.form-grid {
  display: grid;
  gap: 0 1rem;
}

@media (min-width: 540px) {
  .form-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.form-row {
  margin: 0 0 1rem;
  border: 0;
  padding: 0;
}

.form-row label,
.form-row legend {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--cream);
}

.form-row legend {
  padding: 0;
}

.optional {
  font-weight: 400;
  color: var(--muted);
}

.form-row input[type="text"],
.form-row input[type="tel"],
.form-row input[type="email"],
.form-row textarea {
  width: 100%;
  padding: 0.7rem 0.8rem;
  font: inherit;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid transparent;
  border-radius: 2px;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: 2px solid var(--amber);
  outline-offset: 1px;
}

.form-row textarea {
  min-height: 4.5rem;
  resize: vertical;
}

.choice {
  display: flex;
  gap: 0.5rem;
  margin: 0.4rem 0;
  cursor: pointer;
}

.choice input {
  margin-top: 0.3rem;
  accent-color: var(--amber);
}

.choice span {
  color: var(--cream);
}

.field-hint {
  margin: 0.35rem 0 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.address-status {
  margin: 0.4rem 0 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: #9dcea8;
}

.address-status.is-error,
.form-error {
  color: #ffb4a8;
  font-weight: 600;
}

.form-error {
  margin: 0 0 1rem;
}

.form-fineprint {
  margin-top: 0.85rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.quote-success {
  margin-top: 1rem;
}

/* ——— Footer ——— */
.site-footer {
  margin-top: auto;
  padding: 2rem var(--pad-x);
  border-top: 1px solid var(--line);
  text-align: center;
  background: var(--bg);
}

.site-footer p {
  margin: 0.35rem auto;
  max-width: none;
  font-size: 0.95rem;
  color: var(--muted);
}

.site-footer strong {
  color: var(--cream);
}

.site-footer a {
  color: var(--gold);
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

.pac-container {
  z-index: 10000 !important;
}

@media (max-width: 600px) {
  .brand {
    width: min(280px, 78vw);
  }
}
