/* =========================================================
   DESIGNS BY CAROL — Design Tokens
   Palette:  cream #FAFAF7 | light teal #D7EBE5 | dark gray #4A4A47
             mid gray #8C8B84 | charcoal text #2A2A28 | soft gray #7A7972
   Type:     Display script "Give You Glory" (echoes the logo signature)
             Headings "Jost" (clean architectural sans)
             Body "Jost" light / "Cormorant" for supporting serif accents
   Signature: the arced laurel-and-ring motif from the logo, echoed as a
             thin arc rule under section eyebrows and as circular photo frames.
   ========================================================= */

:root {
  --cream: #FAFAF7;
  --cream-deep: #F1EEE6;
  --panel: #D7EBE5;
  --sage: #4A4A47;
  --sage-deep: #2E2D2A;
  --sage-soft: #7A7972;
  --bronze: #8C8B84;
  --bronze-light: #C9C8C0;
  --charcoal: #2A2A26;
  --charcoal-soft: #55534C;
  --white: #FFFFFF;

  --font-script: "Give You Glory", cursive;
  --font-head: "Jost", sans-serif;
  --font-serif: "Cormorant Garamond", serif;

  --max-width: 1180px;
  --radius: 2px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: #FAFAF7; }

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-head);
  font-weight: 300;
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { margin: 0; padding: 0; list-style: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 500;
  margin: 0;
  color: var(--charcoal);
  letter-spacing: 0.01em;
}

.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bronze);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--bronze);
  display: inline-block;
}

.script {
  font-family: var(--font-script);
  font-weight: 400;
  color: inherit;
}

.promise-font {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 400;
  color: inherit;
}

.location-name {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 15px 34px;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.25s ease;
}
.btn-primary {
  background: var(--sage);
  color: var(--white);
  border-color: var(--sage);
}
.btn-primary:hover { background: var(--sage-deep); border-color: var(--sage-deep); }

.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}
.btn-outline:hover { background: var(--charcoal); color: var(--white); }

.btn-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-light:hover { background: var(--white); color: var(--sage-deep); }

/* =========================================================
   HEADER / NAV
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 32px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand img { height: 56px; width: auto; }
.brand-home img { height: 92px; }
@media (max-width: 760px) {
  .brand-home img { height: 68px; }
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-text .small {
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  color: var(--charcoal-soft);
}
.brand-text .name {
  font-family: var(--font-script);
  font-size: 1.7rem;
  color: var(--charcoal);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav-links a {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.nav-links a:hover,
.nav-links a.active {
  border-color: var(--bronze);
  color: var(--sage-deep);
}
.nav-cta {
  background: var(--sage);
  color: var(--white) !important;
  padding: 11px 24px;
  border-radius: var(--radius);
  border-bottom: none !important;
}
.nav-cta:hover { background: var(--sage-deep); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--charcoal);
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--sage-deep);
  color: var(--cream);
}
.footer-top {
  padding: 64px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
  gap: 40px;
}
.footer-brand .brand-text .name { color: var(--cream); font-size: 1.9rem; }
.footer-brand .brand-text .small { color: rgba(248,245,239,0.6); }
.footer-brand p {
  margin-top: 16px;
  color: rgba(248,245,239,0.75);
  font-size: 0.92rem;
  max-width: 280px;
}
.footer-col h4 {
  color: var(--bronze-light);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col a {
  color: rgba(248,245,239,0.82);
  font-size: 0.92rem;
  transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--bronze-light); }

.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 18px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(248,245,239,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}
.footer-social a:hover { background: var(--bronze); border-color: var(--bronze); }

.footer-bottom {
  border-top: 1px solid rgba(248,245,239,0.15);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(248,245,239,0.55);
}

/* Ribbon strip */
.ribbon {
  background: var(--panel);
  padding: 16px 0;
  text-align: center;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--charcoal-soft);
  letter-spacing: 0.02em;
}
.ribbon strong {
  font-style: normal;
  font-family: var(--font-head);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--sage-deep);
  margin-left: 14px;
}

/* =========================================================
   PHOTO FRAMES (real images, replacing placeholders)
   ========================================================= */
.photo-frame {
  position: relative;
  overflow: hidden;
  background: var(--panel);
}
.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.photo-frame.circle {
  border-radius: 50%;
  aspect-ratio: 1/1;
  height: auto !important;
}

/* =========================================================
   PLACEHOLDER IMAGE BLOCKS
   Since no real photography is available yet, these render an
   elegant marked placeholder in the brand palette rather than a
   generic gray box, so pages preview cleanly and are obvious to
   swap out later.
   ========================================================= */
.ph {
  position: relative;
  background: linear-gradient(135deg, var(--panel) 0%, var(--cream-deep) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.ph::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(135deg, rgba(169,129,79,0.07) 0 2px, transparent 2px 34px);
}
.ph .ph-label {
  position: relative;
  z-index: 1;
  font-family: var(--font-head);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-soft);
  border: 1px solid var(--bronze-light);
  padding: 10px 18px;
  background: rgba(248,245,239,0.6);
}
.ph-circle {
  border-radius: 50%;
  aspect-ratio: 1/1;
}

/* =========================================================
   HERO (homepage)
   ========================================================= */
.hero-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  min-height: 520px;
}
.hero-image { min-height: 420px; }
.hero-copy {
  background: var(--sage-deep);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px;
}
.hero-copy h1 {
  color: var(--white);
  font-size: clamp(2.1rem, 3.4vw, 2.9rem);
  font-weight: 500;
  line-height: 1.15;
}
.hero-copy p {
  color: rgba(255,255,255,0.82);
  margin: 20px 0 30px;
  font-size: 1.02rem;
  max-width: 380px;
}
.hero-strip {
  background: var(--sage);
}
.hero-strip-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  padding: 16px 32px;
  color: var(--white);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-align: center;
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-image { min-height: 300px; }
  .hero-strip-inner { justify-content: center; text-align: center; }
}

/* =========================================================
   SHARED LAYOUT HELPERS
   ========================================================= */
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.center { text-align: center; }
.max-620 { max-width: 620px; }
.mx-auto { margin-left: auto; margin-right: auto; }

.page-hero {
  padding: 72px 0 60px;
  background: var(--panel);
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  margin-top: 14px;
}
.page-hero p {
  max-width: 560px;
  margin: 18px auto 0;
  color: var(--charcoal-soft);
}
.breadcrumb {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage-soft);
  margin-top: 10px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  padding: 34px 30px;
}
.card h3 { margin: 18px 0 10px; font-size: 1.2rem; }
.card p { color: var(--charcoal-soft); font-size: 0.95rem; }
.card .num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--bronze);
}

/* Contact / CTA banner */
.cta-band {
  background: var(--sage);
  color: var(--white);
  text-align: center;
  padding: 72px 0;
}
.cta-band h2 { color: var(--white); font-size: clamp(1.7rem, 3vw, 2.4rem); }
.cta-band p { color: rgba(255,255,255,0.85); max-width: 560px; margin: 16px auto 30px; }

/* Responsive */
@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-wrap.open .nav-links {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 20px 32px 28px;
    gap: 18px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
  }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
