/* Design Coordinate Integrate: mobile-first styles. No framework, no build step.
   Brand: black and gold, matching the logo and Instagram posts. */

:root {
  --ink: #141414;
  --ink-soft: #5a5650;
  --paper: #faf8f3;
  --paper-alt: #f1ede4;
  --line: #ddd6c8;
  --black: #0e0e0e;
  --gold: #d4a72c;         /* on black only */
  --gold-text: #7a5a00;    /* gold for text on light backgrounds (AA contrast) */
  --gold-bar: #bf9000;     /* decorative rules and borders */
  --on-black-soft: #c9c3b6;
  --radius: 4px;
  --wrap: 72rem;
  --gutter: clamp(1rem, 4vw, 2rem);
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  --sans: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color-scheme: light;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 5rem; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
}

img { display: block; max-width: 100%; height: auto; }
figure, blockquote { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.15; margin: 0 0 .5em; }
h1 { font-size: clamp(2rem, 6vw, 3.25rem); letter-spacing: -.01em; }
h2 { font-size: clamp(1.625rem, 4vw, 2.25rem); }
h2::after { content: ""; display: block; width: 3rem; height: 3px; margin-top: .6rem; background: var(--gold-bar); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; }

a { color: var(--gold-text); text-underline-offset: .2em; }
a:hover { color: var(--ink); }
:focus-visible { outline: 3px solid var(--gold-bar); outline-offset: 3px; border-radius: 2px; }

.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }

.skip-link {
  position: absolute; left: 1rem; top: -3rem; z-index: 100;
  padding: .5rem 1rem; background: var(--gold); color: var(--black); border-radius: var(--radius);
}
.skip-link:focus { top: 1rem; color: var(--black); }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 10; background: var(--black); color: #fff; }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 4.25rem; }
.brand { display: flex; align-items: center; gap: .5rem; font-family: var(--serif); font-weight: 600; font-size: 1.1rem; line-height: 1.1; color: #fff; text-decoration: none; }
.brand:hover { color: var(--gold); }
.brand-mark { width: 3.25rem; height: 3.25rem; flex: none; margin-left: -.5rem; }
.brand-sub { color: var(--gold); }

/* On small screens only the Contact link shows; the page is short enough to scroll. */
.nav-list { display: flex; gap: 1.5rem; align-items: center; }
.nav-list li:not(:last-child) { display: none; }
.nav-list a { color: #fff; text-decoration: none; font-size: .95rem; }
.nav-list a:hover { color: var(--gold); text-decoration: underline; }
.nav-list a.nav-cta { padding: .45rem .9rem; border: 1.5px solid var(--gold); border-radius: var(--radius); color: var(--gold); font-weight: 600; }
.nav-list a.nav-cta:hover { background: var(--gold); color: var(--black); text-decoration: none; }

@media (min-width: 52rem) {
  .nav-list li:not(:last-child) { display: list-item; }
}

/* ---------- Buttons ---------- */
.button {
  display: inline-block; padding: .8rem 1.3rem; border-radius: var(--radius);
  background: var(--black); color: #fff; font-weight: 600; text-decoration: none;
  border: 2px solid var(--black); transition: background-color .15s, color .15s;
}
.button:hover { background: #333; border-color: #333; color: #fff; }
.button .meta { font-weight: 400; opacity: .8; }
.button-ghost { background: transparent; color: var(--ink); }
.button-ghost:hover { background: var(--black); color: #fff; }
.button-gold { background: var(--gold); border-color: var(--gold); color: var(--black); font-size: 1.1rem; overflow-wrap: anywhere; }
.button-gold:hover { background: #e6bd4a; border-color: #e6bd4a; color: var(--black); }
.button-ghost-light { background: transparent; border-color: var(--gold); color: var(--gold); font-size: 1.1rem; }
.button-ghost-light:hover { background: var(--gold); color: var(--black); }

/* ---------- Hero ---------- */
.hero { padding-block: clamp(2.5rem, 7vw, 5rem); }
.hero-inner { display: grid; gap: 2.5rem; align-items: center; }
.eyebrow { font-size: .85rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--gold-text); }
.lede { font-size: 1.15rem; color: var(--ink-soft); max-width: 36rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.5rem; }
.hero-media img { border-radius: var(--radius); box-shadow: 0 20px 40px -20px rgba(20, 20, 20, .45); aspect-ratio: 4 / 3; object-fit: cover; }

@media (min-width: 60rem) {
  .hero-inner { grid-template-columns: 1fr 1fr; gap: 4rem; }
}

/* ---------- Sections ---------- */
.section { padding-block: clamp(3rem, 8vw, 5.5rem); }
.section-alt { background: var(--paper-alt); }
.section-intro { color: var(--ink-soft); max-width: 40rem; margin-bottom: 2.5rem; }

/* ---------- Package ---------- */
.package-list { display: grid; gap: 1.25rem; }
.package-item { background: #fff; border: 1px solid var(--line); border-top: 3px solid var(--gold-bar); border-radius: var(--radius); padding: 1.5rem; }
.package-item p { margin: 0; color: var(--ink-soft); }
.icon { width: 2.5rem; height: 2.5rem; margin-bottom: 1rem; fill: none; stroke: var(--gold-text); stroke-width: 2; stroke-linejoin: round; stroke-linecap: round; }

@media (min-width: 40rem) { .package-list { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 60rem) { .package-list { grid-template-columns: repeat(6, 1fr); }
  .package-item { grid-column: span 2; }
  .package-item:nth-child(4) { grid-column: 2 / span 2; }
}

/* ---------- Portfolio ---------- */
.portfolio-grid { display: grid; gap: 1.25rem; }
.portfolio-grid img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); }
.portfolio-grid figcaption { padding-top: .6rem; display: flex; flex-direction: column; }
.portfolio-grid figcaption span { color: var(--ink-soft); font-size: .95rem; }

@media (min-width: 40rem) { .portfolio-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 60rem) { .portfolio-grid { grid-template-columns: repeat(3, 1fr); gap: 1.75rem; } }

/* ---------- Sample + testimonial ---------- */
.samples { display: grid; gap: 2.5rem; align-items: center; }
.testimonial { background: var(--black); color: #fff; border-radius: var(--radius); padding: 2rem; border-left: 4px solid var(--gold); }
.testimonial p { font-family: var(--serif); font-size: 1.25rem; line-height: 1.45; }
.testimonial footer { color: var(--gold); font-weight: 600; }
.testimonial cite { font-style: normal; }

@media (min-width: 60rem) { .samples { grid-template-columns: 1fr 1fr; gap: 4rem; } }

/* ---------- About ---------- */
.about { display: grid; gap: 2.5rem; align-items: center; }
.about-photo { max-width: 18rem; }  /* current photo is only 329px wide; keep it small so it stays sharp */
.about-photo img { width: 100%; border-radius: var(--radius); border-bottom: 4px solid var(--gold-bar); }
.about-text { max-width: 40rem; }
.pull { font-family: var(--serif); font-size: 1.3rem; font-style: italic; line-height: 1.4; }

@media (min-width: 60rem) { .about { grid-template-columns: 18rem 1fr; gap: 4rem; } .about-photo { max-width: none; } }

/* ---------- Contact ---------- */
.contact { background: var(--black); color: #fff; text-align: center; }
.contact h2::after { margin-inline: auto; background: var(--gold); }
.contact .section-intro { color: var(--on-black-soft); margin-inline: auto; }
.contact-social { margin: 2rem 0 0; color: var(--on-black-soft); }
.contact-social a { color: var(--gold); }
.contact-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: .75rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--black); color: var(--on-black-soft); border-top: 1px solid #2a2a2a; padding-block: 1.5rem; font-size: .875rem; }
.footer-inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: .25rem 2rem; }
.site-footer p { margin: 0; }
