/* ============================================
   KEELEY BRIGHT PHOTOGRAPHY — styles.css
   Editorial, clean, responsive
============================================ */

/* ---------- TOKENS ---------- */
:root {
  --green-deep: #000000;
  --green-mid: rgba(0,0,0,0.6);
  --green-soft: rgba(0,0,0,0.6);
  --green-pale: rgba(0,0,0,0.6);
  --green-whisper: rgba(0,0,0,0.6);

  --white: #ffffff;
  --off-white: #faf9f7;

  --ink: #000000;
  --ink-soft: #1a1a1a;
  --ink-faint: rgba(0,0,0,0.5);

  --accent: #1a1a1a;

  --font-serif: 'Cormorant Garamond', Georgia, "Times New Roman", serif;
  --font-sans: 'Jost', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;


  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  --shadow-sm: 0 2px 8px rgba(44,61,46,0.08);
  --shadow-md: 0 8px 32px rgba(44,61,46,0.12);
  --shadow-lg: 0 20px 60px rgba(44,61,46,0.16);

  --transition: 0.3s ease;

  /* Light mode */
  --bg: var(--white);
  --bg-alt: var(--green-whisper);
  --surface: var(--white);
  --text: var(--ink);
  --text-soft: var(--ink-soft);
  --text-faint: var(--ink-faint);
  --border: var(--green-pale);
  --header-bg: rgba(250,249,247,0.94);
}

[data-theme="dark"] {
  --bg: #151a15;
  --bg-alt: #1c231c;
  --surface: #222922;
  --text: #eef2ee;
  --text-soft: #b8c4b8;
  --text-faint: #7a8f7a;
  --border: #2e3d2e;
  --header-bg: rgba(20,25,20,0.9);

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.4);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.5);
}

img {
  width: 100%;
  height: auto;
  object-fit: contain;
}


/* ---------- RESET ---------- */
*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

html, body {
  width: 100%;
  min-height: 100%;
  margin: 0;
  padding: 0;
  background: var(--bg);
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  color: var(--text);
  line-height: 1.7;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---------- ACCESSIBILITY ---------- */
.skip-link { display: none !important; } /* Removed visually */

/* ---------- LAYOUT ---------- */
.container { width: 100%; max-width: 1200px; margin-inline: auto; padding-inline: var(--space-md); }
.section { padding-block: var(--space-2xl); }
.center { text-align: center; }

/* Offset scroll targets for fixed header */
section { scroll-margin-top: 90px; }

/* ---------- TYPOGRAPHY ---------- */
.section-eyebrow {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 250;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-soft);
  margin-bottom: var(--space-xs);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: var(--space-md);
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--green-deep);
  color: var(--white);
  border: 2px solid var(--green-deep);
}
.btn-primary:hover {
  background: var(--green-mid);
  border-color: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--green-deep);
  border: 2px solid var(--green-deep);
}
.btn-outline:hover {
  background: var(--green-deep);
  color: var(--white);
  transform: translateY(-2px);
}
[data-theme="dark"] .btn-outline {
  color: var(--green-pale);
  border-color: var(--green-pale);
}
[data-theme="dark"] .btn-outline:hover {
  background: var(--green-mid);
  border-color: var(--green-mid);
  color: var(--white);
}

/* ---------- HEADER ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  height: 72px;
  width: 100%;
  background-color: var(--header-white);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(6px);
  z-index: 999;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  height: 72px;
}

.site-branding,
.logo { display: flex; align-items: center; gap: 10px; }

.branding-text {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(#000000);
  letter-spacing: 0.1em;
}

.logo {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--text);
  letter-spacing: 0.02em;
  line-height: 1.1;
  flex-shrink: 0;
}

.primary-nav { margin-left: auto; }
.primary-nav ul { display: flex; gap: var(--space-lg); align-items: center; }

.nav-link {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-soft);
  transition: color var(--transition);
  position: relative;
  padding-bottom: 2px;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--green-mid);
  transition: width var(--transition);
}
.nav-link:hover { color: var(--green-mid); }
.nav-link:hover::after { width: 100%; }

.cta-nav {
  background: var(--green-deep);
  color: var(--white) !important;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-sm);
  letter-spacing: 0.12em;
}
.cta-nav::after { display: none; }


.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  margin-left: 1rem;
  color: var(--text);
}
.hamburger,
.hamburger::before,
.hamburger::after {
  display: block; width: 22px; height: 1.5px; background: currentColor;
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger { position: relative; }
.hamburger::before, .hamburger::after { content: ''; position: absolute; left: 0; }
.hamburger::before { top: -6px; }
.hamburger::after { top: 6px; }
.nav-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.nav-toggle[aria-expanded="true"] .hamburger::before { transform: rotate(45deg) translate(4px, 4px); }
.nav-toggle[aria-expanded="true"] .hamburger::after { transform: rotate(-45deg) translate(4px,-4px); }

/* ---------- HERO (PORTRAIT GRID WITH SPACE BELOW HEADER) ---------- */

.hero-image-section {
  position: relative; /* anchors the text to THIS section */
  width: 100%;
  margin: 0 0 1.5rem 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero {
  position: relative;
  width: 100%;
  min-height: 35vh; /* try 30–40vh to taste */
  overflow: hidden;
}



.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.45); /* dark overlay */
  z-index: 1;
  pointer-events: none;
}


.hero-content {
  position: relative;
  z-index: 2;
}



/* PORTRAITS HERO SECTION */
.portraits-hero {
  position: relative; /* anchors arrows here */
  width: 100%;
  overflow: hidden;
  margin-bottom: 4rem;
  margin-top: 0;
}

.hero-overlay-text {
  position: absolute;
  top: 50%;               /* centres vertically */
  left: 50%;              /* centres horizontally */
  transform: translate(-50%, -50%);
  text-align: center;
  color: #1a1a1a;         /* soft black */
  z-index: 2;             /* sits above the image */
  width: 100%;
  padding: 0 2rem;
  font-family: var(--font-serif);
}

.hero-overlay-text h1 {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 400;
}

.hero-overlay-text p {
  font-size: 2rem;
  opacity: 0.8;
  font-family: var(--font-serif);
}


.hero-scroll {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 1rem;
  padding: 0 1rem;
  white-space: nowrap;
}

.hero-scroll::-webkit-scrollbar {
  display: none;
}

.hero-scroll img {
  width: auto;
  height: 90vh; /* FIXED HEIGHT */
  object-fit: cover;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .hero-scroll img {
    height: 35vh;
  }
}




/* Arrows */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--ink-soft);
  opacity: 0.35;
  cursor: pointer;
  z-index: 20;
  transition: opacity .2s ease;
}

.hero-arrow:hover {
  opacity: 0.7;
}

.left-arrow { left: 20px; }
.right-arrow { right: 20px; }

/* Mobile */
@media (max-width: 768px) {
  .hero-arrow {
    display: none;
  }
}

/* ---------- LOGO SECTION BELOW HERO ---------- */

/* ---------- LOGO SECTION BELOW HERO ---------- */
/* Logo section */
.logo-section {
  width: 100%;
  padding: 4rem 0 6rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-wrap {
  text-align: center;
  width: 100%;
}

.center-logo {
  width: 360px; /* adjust size if needed */
  height: auto;
  display: block;
  margin: 0 auto 0.2rem; /* space below logo */
}

/* First line of words */
.logo-line-1 {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  color: var(--text-soft);
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}

/* Second line of words */
.logo-line-2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--text-soft);
  opacity: 0.95;
  letter-spacing: 0.03em;
  margin-bottom: 1rem;
}

.logo-section {
  padding: 4rem 0;
}

/* ---------- ABOUT ---------- */
.about-section { background: var(--bg); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.about-image-wrap {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.main-about-img {
  width: 100%;
  height: auto;
  display: block;
  border: 3px solid #000;
}

.about-overlay-img {
  position: absolute;
  bottom: 4%;
  right: 4%;
  width: 48%;
  height: auto;
  border: 6px solid #fff;
  box-shadow: var(--shadow-lg);
  z-index: 3;
}


.about-text p {
  color: var(--text-soft);
  margin-bottom: var(--space-md);
  font-size: 1.05rem;
  line-height: 1.8;
}

.about-text .btn {
  display: block;
  margin: 2rem auto 0; /* centres it */
  text-align: center;
  width: fit-content;
}


.about-section {
  padding-top: 3rem;
  padding-bottom: 4rem;
}

@media (max-width: 768px) {
  .about-text {
    text-align: center;
  }

  .about-text .section-title {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .about-image-wrap {
    max-width: 90%;
  }

  .about-overlay-img {
    position: absolute;
    bottom: 3%;
    right: 3%;
    width: 45%;
  }
}



/* ---------- WHY ---------- */
.why-section { background: var(--bg); }
.why-intro {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1vw, 1rem);
  font-style: italic;
  font-weight: 300;
  color: var(--text-soft);
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
  line-height: 1.9;
}
.why-section {
  padding-top: 2rem;
  padding-bottom: 4rem;
}

/* ---------- GALLERY ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.gallery-item {
  width: 100%;
  aspect-ratio: 2 / 3; /* FIXED SHAPE — change to 4/5 or 2/3 if you prefer */
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* fills the box */
  object-position: center;
}



@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


.gallery-section {
  padding-top: 2.5rem;
  padding-bottom: 2rem;
}



/* ---------- INFO (PACKAGES + FAQ) ---------- */
.pricing-line-1,
.pricing-line-2 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--text-soft);
  max-width: 700px;
  margin: 1rem auto;
  line-height: 1.7;
}

.pricing-line-2 {
  font-size: 1.05rem;
  opacity: 0.85;
}

.info-section {
  margin-top: 4rem; /* increase or decrease to taste */
}

#info .btn {
  margin-top: 3rem; /* increase to 4rem or 5rem if you want more space */
}



/* ---------- EDITORIAL CARD STYLE (Coverage + Add-Ons) ---------- */

/* Coverage + Add-Ons grids */
.included-grid,
.addons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* two columns */
  gap: 2rem; /* more editorial spacing */
  margin-top: 1rem;
}

/* Mobile */
@media (max-width: 768px) {
  .included-grid,
  .addons-grid {
    grid-template-columns: 1fr; /* stack on mobile */
  }
}

/* SPACE ABOVE ADD-ONS BUTTON */
.addons-section .btn {
  margin-top: 6rem; /* increase to 4rem or 5rem if you want more */
}

/* CONTACT SECTION */
.contact-section {
  background: #1a1a1a; /* soft black / charcoal */
  padding: 8rem 0;
  color: #ffffff;
}

.contact-section * {
  color: #ffffff !important;
}

.contact-form input,
.contact-form textarea {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.7); /* softer white */
  padding: 1rem;
  font-size: 1rem;
  border-radius: 0;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255,255,255,0.5);
}
.btn-contact {
  background: #ffffff;
  color: #1a1a1a !important;
  border: 1px solid #1a1a1a;
  padding: 0.7rem 1.4rem; /* smaller */
  font-size: 0.9rem;      /* smaller */
  letter-spacing: 0.04em;
  border-radius: 0;
  display: block;
  margin: 2rem auto 0;    /* centred */
  width: fit-content;     /* keeps it small */
}

.btn-contact:hover {
  background: rgba(255,255,255,0.85);
}


/* Eyebrow */
.contact-eyebrow {
  font-family: var(--font-serif);
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 1rem;
  text-align: center;
}

/* Title */
.contact-title {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 400;
  text-align: center;
  margin-bottom: 2rem;
}

/* Intro text */
.contact-intro {
  max-width: 600px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
  line-height: 1.7;
  opacity: 0.85;
  text-align: center;
}

/* Form */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-form label {
  font-size: 0.9rem;
  opacity: 0.8;
}

.contact-form input,
.contact-form textarea {
  background: transparent;
  border: 1px solid #ffffff;
  padding: 1rem;
  font-size: 1rem;
  border-radius: 0;
}

.contact-form textarea {
  min-height: 150px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255,255,255,0.6);
}

/* Button */
.btn-contact {
  background: #ffffff;
  color: #000000 !important;
  border: none;
  padding: 1rem 2rem;
  font-size: 1rem;
  letter-spacing: 0.05em;
  cursor: pointer;
  border-radius: 0;
  margin-top: 1rem;
}

.btn-contact:hover {
  background: rgba(255,255,255,0.85);
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--green-deep);
  color: rgba(255,255,255,0.7);
  padding-block: var(--space-xl) var(--space-lg);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: var(--space-xl);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: var(--space-md);
}
.footer-logo { font-family: var(--font-serif); font-size: 1rem; color: var(--white); margin-bottom: var(--space-xs); }
.footer-logo span {
  font-size: 0.65rem; font-family: var(--font-sans);
  letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  display: inline-block; margin-left: 0.5rem;
}
.footer-tagline { font-size: 0.9rem; line-height: 1.7; color: rgba(255,255,255,0.5); }
.footer-nav { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-nav a {
  font-size: 0.85rem; color: rgba(255,255,255,0.6);
  letter-spacing: 0.05em; transition: color var(--transition);
}
.footer-nav a:hover { color: var(--white); }
.footer-social-label {
  font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.4); margin-bottom: var(--space-sm);
}
.social-icons { display: flex; gap: var(--space-sm); }
.social-link {
  width: 40px; height: 40px; border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); transition: all var(--transition);
}
.social-link:hover { border-color: var(--white); color: var(--white); transform: translateY(-2px); }
.social-link svg { width: 18px; height: 18px; }

.footer-bottom {
  grid-column: 1 / -1;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap;
  gap: var(--space-sm);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}
.footer-policy:hover { color: rgba(255,255,255,0.7); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 992px) {
  .about-grid { grid-template-columns: 1fr; gap: var(--space-xl); }
  .about-image-wrap::before { display: none; }
  .about-img { height: 420px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ---------- MOBILE FIXES (CLEAN + CORRECT) ---------- */
@media (max-width: 768px) {

  /* Mobile nav layout */
  .primary-nav ul {
    flex-direction: column;
    align-items: center;
    gap: var(--space-lg);
  }

  .nav-link {
    font-size: 1rem;
  }

  .cta-nav {
    padding: 0.75rem 1rem;
  }

  /* Mobile hero adjustments */
  .hero-title {
    font-size: clamp(1.6rem, 6vw, 2rem);
  }

  .hero-subtitle {
    font-size: clamp(1rem, 3.5vw, 1.2rem);
  }

  .hero-ctas {
    flex-direction: column;
  }
}


@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}

.portraits-track img { border-radius: 0; /* was 8px / box-shadow: none; / optional: remove shadow for a flatter look */ }

.gallery-grid { gap: 8px; /* add spacing; try 8–16px to taste / grid-auto-rows: 500px; / adjust height to account for the gaps (was 520px) / padding: 0 8px; / optional: inset the whole grid slightly */ } @media (max-width: 1024px) { .gallery-grid { grid-auto-rows: 400px; } } @media (max-width: 640px) { .gallery-grid { grid-auto-rows: 260px; } }

:root { --font-serif: 'Cormorant Garamond', Georgia, serif; /* keep */ --font-sans: 'Jost', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; }

/* Headings — lighter, more airy / .section-title, .hero-title { font-weight: 300; / lighter than 400 / letter-spacing: 0.005em; / reduce spacing so it feels more refined */ }

/* Eyebrow/overline / .section-eyebrow { font-weight: 300; / keep delicate / letter-spacing: 0.18em; / marginally less */ }

/* Hero subtitle + general body copy / .hero-subtitle, .about-text p, .contact-text p, .package-features li, .faq-answer { font-weight: 300; / lighter body */ }

/* Nav links slightly softer / .nav-link { font-weight: 400; / was 500 / letter-spacing: 0.12em; / a bit less bold/spacey */ }

/* Buttons look lighter without changing hierarchy / .btn { letter-spacing: 0.08em; font-weight: 500; / keep readability on buttons */ }

If you want an even more delicate feel, you can also drop the gallery images’ edge-to-edge look by keeping the gap above 12px and adding a subtle background:

.gallery-section { background: var(--bg); } /* instead of var(--surface) */

/* Remove spacing around portraits carousel */
.portraits-carousel {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* ---------- FULLSCREEN MOBILE MENU ---------- */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: #ffffff;
  z-index: 9999;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
}

.mobile-menu-overlay.active {
  display: flex;
}

.mobile-menu-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  font-size: 2.2rem;
  background: none;
  border: none;
  color: var(--ink);
}

.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  text-align: center;
}

.mobile-menu-nav a {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--ink);
  letter-spacing: 0.03em;
}

.mobile-menu-social {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
}

.mobile-menu-social a {
  font-size: 1.4rem;
  color: var(--ink-soft);
}
@media (max-width: 768px) {

  /* Show hamburger */
  .nav-toggle {
    display: flex !important;
    margin-left: auto;
  }

  /* Hide desktop nav */
  .primary-nav {
    display: none !important;
  }

  /* Keep logo + text visible */
  .branding-text {
    display: inline-block;
  }
}
.header-inner {
    justify-content: space-between;
    gap: 10px; /* adjust if needed */
}

.addon-card,
.included-card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.7); /* thin soft-black line */
  border-radius: 0;
  padding: 2.5rem; /* gives the border room to breathe */
  box-shadow: none;
  transition: none;
}
.addon-card,
.included-card {
  outline: 1px solid rgba(0,0,0,0.15); /* faint outer line */
  outline-offset: 6px;                 /* creates a double‑border effect */
}

.section-title {
  margin-bottom: 3rem; /* more breathing room */
}

.included-card,
.addon-card {
  padding: 2rem 2.2rem; /* slightly tighter, more refined */
}

.section-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  opacity: 0.55;
}

.section-title {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 300;
}

.section::before {
  content: '';
  display: block;
  width: 60px;
  height: 1px;
  background: rgba(0,0,0,0.2);
  margin: 0 auto 3rem;
}

.hero-image-section::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 80px;
  background: linear-gradient(to bottom, rgba(255,255,255,0), #ffffff);
  pointer-events: none;
}

.included-card,
.addon-card {
  border: 1px solid rgba(0,0,0,0.7);
  outline: 1px solid rgba(0,0,0,0.1);
  outline-offset: 6px;
}

.gallery-item img {
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.03);
}

.gallery-item img {
  border: 6px solid #ffffff; /* white border */
  box-sizing: border-box;    /* ensures border doesn't distort layout */
}

@media (max-width: 768px) {
  .about-image-wrap {
    max-width: 90%;
  }

  .about-overlay-img {
    bottom: 3%;
    right: 3%;
    width: 42%;
  }
}

/* HEADER WHITE TEXT */
.site-header,
.site-header * {
  color: #ffffff !important;
}

.nav-link::after {
  background: rgba(255,255,255,0.7) !important;
}

/* HERO TEXT RIGHT-ALIGNED, WHITE, BIGGER */
.hero-overlay-text {
  text-align: right !important;
  color: #ffffff !important;
  right: 5%;
  left: auto;
  transform: translateY(-50%);
  font-size: 3rem;
  font-family: var(--font-serif);
}

/* MOBILE HERO TEXT */
@media (max-width: 768px) {
  .hero-overlay-text {
    text-align: center !important;
    left: 50%;
    right: auto;
    transform: translate(-50%, -50%);
    font-family: var(--font-serif);
  }

  .hero-overlay-text h1 {
    font-size: 3.2rem !important;
    font-weight: 300;
    color: #ffffff !important;
    font-family: var(--font-serif);
  }

 .hero-overlay-text p {
  font-size: 3.6rem;
  color: #ffffff;
  opacity: 0.9;
  font-family: var(--font-serif);
}

/* FIX HEADER BACKGROUND */
.site-header {
  background: rgba(0,0,0,0.45) !important;
  backdrop-filter: blur(6px);
}


@media (max-width: 768px) {
  .hero-scroll img {
    aspect-ratio: 2 / 3;
    height: auto;
  }
}

/* RESPONSIVE HERO TEXT */
.hero-overlay-text h1 {
  font-family: var(--font-serif) !important;
  font-size: clamp(2.4rem, 6vw, 5.5rem) !important;
  font-weight: 300;
  line-height: 1.1;
}

.hero-overlay-text p {
  font-family: var(--font-serif) !important;
  font-size: clamp(1.2rem, 3vw, 2.2rem) !important;
  font-weight: 300;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .branding-text {
    font-size: 1.1rem !important; /* adjust to taste */
    letter-spacing: 0.05em;       /* keeps it elegant */
  }
}

@media (max-width: 768px) {
  .hero-scroll img {
    height: 65vh !important;   /* smaller, elegant, clearly scrollable */
    aspect-ratio: 3 / 4;       /* keeps them consistent */
    object-fit: cover;
  }

  .hero-scroll {
    padding-left: 0.5rem !important; /* reduces left gap */
    gap: 0.6rem !important;          /* tighter spacing for mobile */
  }
}

@media (max-width: 768px) {
  .portraits-hero {
    margin-bottom: 1.5rem !important; /* reduces gap directly under portraits */
  }

  .logo-section {
    padding-top: 2rem !important; /* optional: reduces the next section’s top padding */
  }
}

@media (max-width: 768px) {

  /* Keep the whole composition proportional */
  .about-image-wrap {
    position: relative;
    width: 100%;
    max-width: 420px;   /* prevents collapse */
    margin: 0 auto;
  }

  /* Main image stays clean and full */
  .main-about-img {
    width: 100%;
    height: auto;
    border: 3px solid #000; /* thin + consistent */
  }

  /* Overlay image — the important part */
  .about-overlay-img {
    position: absolute;
    bottom: 4%;          /* same overlap as desktop */
    right: 4%;
    width: 42%;          /* scales proportionally */
    height: auto;
    border: 4px solid #fff; /* thinner border for mobile */
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  }
}

@media (max-width: 768px) {

  /* Move hero text lower */
  .hero-overlay-text {
    top: 58% !important;          /* moves text down */
    transform: translate(-50%, -50%) !important;
  }

  /* Optional: move the hero image down slightly too */
  .hero-image-section {
    padding-top: 2.5rem !important; /* adds space above the image */
  }
}


.footer-email a {
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
  color: #333;
  text-decoration: none;
  letter-spacing: 0.5px;
}

.footer-email a:hover {
  opacity: 0.7;
}
