/* ==========================================================================
   Lisa Taber Interiors — shared stylesheet
   Palette: cream background, warm charcoal text, muted gold/bronze accent
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600&family=Cormorant+Garamond:ital,wght@0,500;1,400&family=EB+Garamond:ital@0;1&display=swap');

:root {
  --cream: #f7f3ec;
  --cream-dark: #efe9dd;
  --ink: #2b2620;
  --ink-soft: #55503f;
  --gold: #a9865a;
  --gold-light: #c9ac7c;
  --line: #ddd3bf;
  --serif-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --serif-body: 'Cormorant Garamond', 'EB Garamond', Georgia, serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--serif-body);
  font-size: 19px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

/* Cap the page at the reference design's own width so photos are shown at
   (or near) their native resolution instead of being stretched across a
   wide monitor, which is what was causing the soft/blurry look. */
.page-wrap {
  max-width: 1000px;
  margin: 0 auto;
  background: var(--cream);
  box-shadow: 0 0 60px rgba(0,0,0,0.05);
}

a { color: inherit; text-decoration: none; }

.eyebrow {
  font-family: var(--serif-display);
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

.rule {
  width: 46px;
  height: 1px;
  background: var(--gold);
  margin: 14px auto;
  border: none;
}

/* ---- Header / Nav ---- */
.site-header {
  padding: 34px 24px 22px;
  text-align: center;
  border-bottom: 1px solid var(--line);
  position: relative;
}

.site-header .logo {
  font-family: var(--serif-display);
  font-size: 2.1rem;
  letter-spacing: 0.35em;
  margin: 0 0 2px 4px;
  font-weight: 500;
}

.site-header .logo-sub {
  font-size: 0.85rem;
  letter-spacing: 0.5em;
  color: var(--ink-soft);
  margin-bottom: 8px;
}

.site-header .est {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
}

.main-nav {
  margin-top: 18px;
}

.main-nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 34px;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.main-nav a {
  font-family: var(--serif-display);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.nav-toggle {
  display: none;
}

/* ---- Hero ---- */
.hero {
  position: relative;
  aspect-ratio: 5 / 3;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20,17,12,0.55) 0%, rgba(20,17,12,0.32) 45%, rgba(20,17,12,0.05) 75%);
}

.hero .hero-copy {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 40px 6%;
  max-width: 60%;
}

.hero .hero-copy h1 {
  font-family: var(--serif-display);
  font-weight: 500;
  font-size: clamp(1.7rem, 4.2vw, 3rem);
  line-height: 1.18;
  margin: 0 0 16px;
  text-shadow: 0 2px 18px rgba(0,0,0,0.35);
}

.hero .hero-copy .rule { margin-left: 0; background: var(--gold-light); }

.hero .hero-copy p.tagline {
  font-family: var(--serif-display);
  font-size: clamp(0.62rem, 1.1vw, 0.8rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

@media (max-width: 640px) {
  .hero { aspect-ratio: 3 / 4; }
  .hero .hero-copy { max-width: 85%; }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Placeholder image blocks (kept in case you want to blank out a photo) */
.placeholder {
  background: linear-gradient(135deg, var(--cream-dark), #e3d9c4);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--ink-soft);
  text-align: center;
  min-height: 220px;
}

.placeholder svg { width: 34px; height: 34px; stroke: var(--gold); opacity: 0.8; }

.placeholder .ph-label {
  font-family: var(--serif-display);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.placeholder .ph-sub {
  font-size: 0.85rem;
  color: var(--ink-soft);
  opacity: 0.75;
}

/* ---- Sections ---- */
section {
  padding: 70px 6%;
}

.philosophy {
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
  padding: 70px 24px;
}

.philosophy blockquote {
  font-family: var(--serif-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.3rem, 2.6vw, 1.7rem);
  line-height: 1.5;
  margin: 18px 0 0;
}

/* ---- Portfolio grid ---- */
.portfolio-strip,
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
  padding: 0 6% 60px;
}

.portfolio-grid .placeholder,
.portfolio-strip .placeholder {
  aspect-ratio: 4 / 5;
  min-height: unset;
}

.portfolio-strip figure {
  margin: 0;
}

.portfolio-strip figure img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}

.portfolio-grid figcaption {
  margin-top: 8px;
  font-size: 0.85rem;
  text-align: center;
  color: var(--ink-soft);
  letter-spacing: 0.05em;
}

.section-heading {
  text-align: center;
  margin-bottom: 40px;
}

.section-heading h2 {
  font-family: var(--serif-display);
  font-weight: 500;
  font-size: 1.4rem;
  margin: 6px 0 0;
}

.center-cta {
  text-align: center;
  margin-top: 30px;
}

.btn {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 12px 30px;
  font-family: var(--serif-display);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
}

.btn:hover { background: var(--gold); color: #fff; }

/* ---- Services ---- */
.services {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}

.services p {
  font-size: 1.15rem;
  color: var(--ink-soft);
}

/* ---- Footer ---- */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 50px 6% 30px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  text-align: left;
}

@media (max-width: 780px) {
  .site-footer { grid-template-columns: 1fr; text-align: center; }
}

.site-footer .f-logo {
  font-family: var(--serif-display);
  font-size: 1.3rem;
  letter-spacing: 0.3em;
}

.site-footer .f-logo-sub {
  font-size: 0.68rem;
  letter-spacing: 0.4em;
  color: var(--ink-soft);
  margin-top: 2px;
}

.site-footer p { margin: 4px 0; color: var(--ink-soft); }

.copyright {
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
  padding: 18px 24px 30px;
  border-top: 1px solid var(--line);
}

/* ---- Mobile nav ---- */
@media (max-width: 640px) {
  .main-nav ul { gap: 18px 22px; }
}
