@font-face { font-family: 'Cooper BT'; src: local('Cooper BT'), local('CooperBT'); }
@font-face { font-family: 'Egyptian Slate'; src: local('Egyptian Slate'), local('EgyptianSlate'); }
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:    #8b2621;
  --red-dk: #6e1e1a;
  --red-lt: #a32e29;
  --gold:   #fff4d4;
  --cream:  #fff4d4;
  --white:  #ffffff;
  --dark:   #1a0a0a;
  --muted:  rgba(255,244,212,0.65);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', sans-serif;
  background: var(--dark);
  color: var(--cream);
  line-height: 1.7;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; width: 100%; z-index: 100;
  background: var(--red-dk);
  border-bottom: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%;     height: 85px;
}

.logo-block { display: flex; flex-direction: column; justify-content: center; }
.logo-link { text-decoration: none; }
.logo-top {
  font-family: 'Cooper BT', 'Bookman Old Style', serif;
  font-weight: 800; font-size: 2.1rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--cream); line-height: 1;
}
.logo-top span { color: var(--gold); }
.logo-bottom {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.58rem; font-weight: 300;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-top: 2px;
}

.nav-links { display: flex; gap: 2.2rem; list-style: none; }
.nav-links a {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--cream); text-decoration: none; transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a.active { color: var(--gold); }

/* ── ANNOUNCEMENT ── */
.announcement {
  background: var(--gold);
  color: var(--dark);
  text-align: center;
  padding: 0.75rem 5%;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  margin-top: 85px;
}
.announcement span {
  font-weight: 300; letter-spacing: 0.08em;
  text-transform: none; margin-left: 0.6rem; font-size: 0.78rem;
}

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.hero-left {
  background: var(--red);
  display: flex; flex-direction: column;
  justify-content: center;
  padding: 6rem 5% 6rem 6%;
  position: relative; overflow: hidden;
}
.hero-left::before {
  content: '';
  position: absolute; inset: 0;
  background: url('https://semplegooder.com/wp-content/uploads/2020/07/a-1.jpg') center/cover no-repeat;
  opacity: 0.12; pointer-events: none;
}
.hero-left > * { position: relative; z-index: 1; }

.eyebrow {
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.2rem;
}
.hero-title {
  font-family: 'Cooper BT', 'Bookman Old Style', serif;
  font-size: clamp(2.8rem, 5.5vw, 4.4rem);
  font-weight: 800; line-height: 1.1;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--cream); margin-bottom: 1.4rem;
}
.gold-bar { width: 55px; height: 3px; background: var(--gold); margin-bottom: 1.6rem; }
.hero-copy {
  font-size: 0.97rem; font-weight: 300;
  color: var(--muted); margin-bottom: 2.4rem; max-width: 480px;
}
.btn {
  display: inline-block;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding: 0.85rem 2.2rem;
  background: var(--gold); color: var(--dark);
  text-decoration: none; border: none; cursor: pointer;
  transition: opacity 0.2s; align-self: flex-start;
}
.btn:hover { opacity: 0.85; }
.btn-outline {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
}
.btn-outline:hover { background: var(--gold); color: var(--dark); opacity: 1; }

.hero-right { position: relative; overflow: hidden; }
.hero-right img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── SECTION SHARED ── */
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-label {
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); display: block; margin-bottom: 0.8rem;
}
.section-title {
  font-family: 'Egyptian Slate', 'Georgia', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700; color: var(--cream); margin-bottom: 1rem;
}
.gold-bar-c { width: 55px; height: 3px; background: var(--gold); margin: 0 auto; }

/* ── SERVICES ── */
#services {
  background: var(--red-dk);
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  padding: 6rem 6%;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2px; max-width: 1080px; margin: 0 auto;
}
.service-card {
  background: var(--red); padding: 2.6rem 2rem;
  text-align: center; transition: background 0.2s;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 100%; height: 3px; background: var(--gold);
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
}
.service-card:hover { background: var(--red-lt); }
.service-card:hover::before { transform: scaleX(1); }
.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; color: var(--cream); margin-bottom: 0.6rem;
}
.service-card p { font-size: 0.82rem; color: var(--muted); font-weight: 300; }

/* ── ABOUT ── */
#about { display: grid; grid-template-columns: 1fr 1fr; min-height: 500px; }
.about-img { position: relative; overflow: hidden; }
.about-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-text {
  background: var(--red); padding: 6rem 5%;
  display: flex; flex-direction: column; justify-content: center;
}
.about-text p {
  font-size: 0.97rem; font-weight: 300;
  color: var(--muted); margin-top: 1.2rem; max-width: 460px;
}
.about-buttons { display: flex; gap: 1rem; margin-top: 2rem; flex-wrap: wrap; }

/* ── PHOTO STRIP ── */
.photo-strip { display: grid; grid-template-columns: repeat(3, 1fr); height: 260px; overflow: hidden; }
.photo-strip div { overflow: hidden; }
.photo-strip img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s; }
.photo-strip div:hover img { transform: scale(1.04); }

/* ── CONTACT ── */
#contact {
  background: var(--red-dk);
  border-top: 2px solid var(--gold);
  padding: 7rem 6%; text-align: center;
}
#contact p {
  font-size: 0.95rem; font-weight: 300; color: var(--muted);
  margin: 1.4rem auto 2.6rem; max-width: 500px;
}

/* ── FOOTER ── */
footer {
  background: var(--dark); border-top: 2px solid var(--red);
  padding: 2.4rem 6%;
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: space-between; gap: 1rem;
}
.footer-left { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--cream); }
.footer-left small {
  display: block; font-family: 'Open Sans', sans-serif;
  font-size: 0.6rem; font-weight: 300;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin-top: 2px;
}
.footer-right a {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); text-decoration: none; transition: color 0.2s;
}
.footer-right a:hover { color: var(--gold); }
.footer-copy { width: 100%; text-align: center; font-size: 0.6rem; color: #555; margin-top: 0.6rem; letter-spacing: 0.1em; }

/* ── OVERLAY PAGES ── */
.overlay {
  display: none; position: fixed; inset: 0; z-index: 200;
  background: var(--dark); overflow-y: auto;
}
.overlay.active { display: block; }
.overlay-inner { max-width: 1100px; margin: 0 auto; padding: 5rem 8% 6rem; }
.overlay-close {
  position: fixed; top: 1.6rem; right: 2rem;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold); background: var(--red-dk);
  border: 1px solid var(--gold); padding: 0.5rem 1.2rem;
  cursor: pointer; z-index: 201;
}
.overlay-close:hover { background: var(--red); }
.overlay-eyebrow {
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem; display: block;
}
.overlay-title {
  font-family: 'Cooper BT', 'Bookman Old Style', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800; color: var(--cream);
  text-transform: uppercase; letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
}
.overlay-subtitle {
  font-family: 'Egyptian Slate', 'Georgia', serif;
  font-size: 1rem; color: var(--muted); margin-bottom: 2rem;
}
.overlay-divider { width: 55px; height: 3px; background: var(--gold); margin-bottom: 2.4rem; }
.overlay-body p {
  font-size: 0.95rem; font-weight: 300;
  color: var(--muted); line-height: 1.9; margin-bottom: 1.4rem;
}
.overlay-body h3 {
  font-family: 'Egyptian Slate', 'Georgia', serif;
  font-size: 1.1rem; color: var(--cream);
  margin: 2rem 0 0.8rem;
}
.overlay-body ul {
  list-style: none; margin-bottom: 1.4rem;
}
.overlay-body ul li {
  font-size: 0.95rem; font-weight: 300;
  color: var(--muted); line-height: 1.9; padding-left: 1.2rem;
  position: relative;
}
.overlay-body ul li::before {
  content: '—'; position: absolute; left: 0; color: var(--gold);
}

/* PR letterhead inside the PR overlay */
.pr-header {
  background: var(--red-dk);
  border-top: 2px solid var(--gold); border-bottom: 2px solid var(--gold);
  padding: 1.2rem 12%;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.pr-header .logo-top { font-size: 1.9rem; }
.pr-header-contact {
  text-align: right; font-size: 0.8rem; font-weight: 300;
  color: var(--cream); line-height: 1.8;
}
.pr-headline {
  font-family: 'Egyptian Slate', 'Georgia', serif;
  font-size: 1.25rem; font-weight: 700;
  color: var(--cream); margin-bottom: 2rem; line-height: 1.4;
}
.pr-footer { border-top: 3px solid var(--gold); margin-top: 3rem; padding-top: 2rem; }
.pr-footer p {
  font-size: 0.9rem; font-weight: 300;
  color: var(--muted); line-height: 1.9; margin-top: 0.6rem;
}
.pr-media-contact {
  margin-top: 1.6rem; font-size: 0.65rem;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold);
}
.pr-media-contact span { color: var(--muted); text-transform: none; letter-spacing: 0.04em; }
.pr-media-contact a { color: inherit; text-decoration: none; }
.pr-media-contact a:hover { color: var(--gold); text-decoration: underline; }

/* ── SUB-PAGE HERO ── */
.page-hero {
  background: var(--red);
  border-bottom: 2px solid var(--gold);
  padding: 9rem 6% 4.5rem;
  text-align: center;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url('https://semplegooder.com/wp-content/uploads/2020/07/a-1.jpg') center/cover no-repeat;
  opacity: 0.12; pointer-events: none;
}
.page-hero > * { position: relative; z-index: 1; }
.page-hero .hero-title { margin-bottom: 1.4rem; }

/* ── VENDORS ── */
.vendor-body { background: var(--red); padding: 5rem 6% 6rem; }
.vendor-prose { max-width: 820px; margin: 0 auto; }
.vendor-prose p {
  font-size: 0.97rem; font-weight: 300;
  color: var(--muted); line-height: 1.9; margin-bottom: 1.5rem;
}
.vendor-prose p:last-child { margin-bottom: 0; }
.vendor-lead { color: var(--cream) !important; font-size: 1.05rem !important; }

#vendor-docs {
  background: var(--red-dk);
  border-top: 2px solid var(--gold);
  padding: 6rem 6%;
}
.docs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px; max-width: 900px; margin: 0 auto;
}
.doc-card {
  background: var(--red); padding: 2.8rem 2rem;
  text-align: center; transition: background 0.2s;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; align-items: center;
}
.doc-card::before {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 100%; height: 3px; background: var(--gold);
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
}
.doc-card:hover { background: var(--red-lt); }
.doc-card:hover::before { transform: scaleX(1); }
.doc-card h3 {
  font-family: 'Egyptian Slate', 'Georgia', serif;
  font-size: 1.1rem; color: var(--cream); margin-bottom: 0.6rem;
}
.doc-card p {
  font-size: 0.82rem; color: var(--muted);
  font-weight: 300; margin-bottom: 1.8rem;
}
.doc-card .btn { align-self: center; margin-top: auto; }
.docs-note {
  text-align: center; font-size: 0.85rem; font-weight: 300;
  color: var(--muted); max-width: 620px; margin: 3rem auto 0;
}
.docs-note a { color: var(--gold); }

@media (max-width: 768px) {
  #hero, #about { grid-template-columns: 1fr; }
  .hero-right { height: 320px; }
  .about-img { height: 280px; }
  .photo-strip { grid-template-columns: 1fr 1fr; height: 200px; }
  .photo-strip div:last-child { display: none; }
  .nav-links { display: none; }
  .pr-header { padding: 1.2rem 6%; }
  .pr-header-contact { text-align: left; }
  .page-hero { padding: 7.5rem 6% 3.5rem; }
}
