/* Stable as of 12/20/2025 */


/* ==================================================
   1. VARIABLES & RESET: CSS variables (colors, fonts), box-sizing reset, base html/body setup
================================================== */

:root {
  --accent: #8b7a66;
  --accent-light: #E8E1DA;
  --navy: #1F2A44;
  --background-color: #f7f7f7;
  --canvas-color: #fff;
}

html {
  background-color: var(--navy);
}

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

/* ==================================================
   2. BASE / GLOBAL TYPOGRAPHY: h1–h6 font-family, sizes, weights, p, a, small, strong, em, text color defaults
================================================== */

.about h1,
.contact h1,
.services h1,
.portfolio h1 {
  color: var(--accent);
}

.page-header h1,
.services h1,
.portfolio h1,
.contact h1 {
  -webkit-font-smoothing: auto;
}

h2 {
  color: var(--navy);
}

body {
  font-family: 'Playfair Display', serif;
  color: #000;
  background: var(--background-color);
  -webkit-font-smoothing: antialiased;
}

.contact-email {
  font-weight: 500;
}

h1, h2 {
  line-height: 1.15;
  overflow: visible;
}

h1, h2 {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3 {
  font-family: "Playfair Display", serif;
  font-weight: 500;
}

/* ==================================================
   3. BASE / GLOBAL LAYOUT (body background, shared spacing rules, .page-wrapper, .container patterns)
================================================== */

.home-editorial .section {
  border-top: 1px solid rgba(31,42,68,0.15);
  padding-top: 4rem;
}
.section-soft {
  background: var(--accent-light);
  padding: 5rem 0;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ==================================================
   4. HEADER / NAVIGATION: .site-header, logo styles, desktop nav links, mobile menu + hamburger, nav icons
================================================== */

.site-header .logo {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--navy);
}

.site-header nav a:hover {
  color: var(--accent);
}

.site-header nav ul {
  gap: 2rem;
}

.site-header nav ul li a {
  font-family: "Playfair Display", serif;
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
}

.site-header {
  background: white;
  border-bottom: 1px solid #eee;
  position: relative;
  z-index: 1000;
  isolation:isolate;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.2rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 70px;
}

.logo a {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--navy);
  text-decoration: none;
  white-space: nowrap;
}

.nav-left {
  display: flex;
  gap: 2rem;
}

.nav-left a {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  text-decoration: none;
  color: var(--navy);
  font-size: 0.9rem;
  letter-spacing: 0.11px;
  transition: color 0.2s ease;
}

.nav-left a:hover {
  color: var(--accent);
}

.nav-icons {
  display: flex;
  gap: 1rem;
}

.nav-icons .icon svg {
  width: 22px;
  height: 22px;
  color: #444;
  transition: 0.2s;
}

.nav-icons .icon:hover svg {
  color: var(--accent);
}

/** Mobile Navigation **/

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  width: 40px;
  padding: 0.5rem;
}

.hamburger span {
  width: 30px;
  height: 3px;
  background: #000;
  border-radius: 3px;
  display: block;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  bottom: 0;
  background: white;
  z-index: 9999;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 2rem;
  gap: 2rem;
  text-align: center;
  overflow-y: auto;
}

.mobile-menu a {
  font-size: 1.8rem;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.2s ease;
  border-bottom: 1px solid var(--accent-light);
}

.mobile-menu a:hover {
  color: var(--accent);
}

.mobile-menu.open {
  display: flex;
}

.no-scroll {
  overflow: hidden;
}

/* Mobile IG Icon */
.mobile-menu .mobile-ig-icon {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
}

.mobile-menu .mobile-ig-icon img {
  width: 28px;
  height: 28px;
  opacity: 0.9;
  transition: opacity 0.2s ease;
}

.mobile-menu .mobile-ig-icon img:hover {
  opacity: 1;
}

/* ==================================================
   5. FOOTER: .site-footer, footer typography
================================================== */

.site-footer {
  background-color: var(--navy);
  color: rgba(255, 255, 255, 0.85);
  padding: 4rem 2rem;
  text-align: center;
}

.footer-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  font-size: 0.9rem;
  line-height: 1.8;
}

.site-footer p,
.site-footer a {
  font-family: "Playfair Display", serif;
  letter-spacing: 0.04em;
  color: #ffffff;
  text-decoration: none;
  font-size: 1rem;
}

.footer-content a:hover {
  color: var(--accent);
}

.footer-icons {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  gap: 1.25rem;
}

.footer-icon {
  color: #fff;
  width: 22px;
  height: 22px;
  display: inline-flex;
}

.footer-icon svg {
  width: 100%;
  height: 100%;
}

.footer-icon:hover {
  color: var(--accent);
}

/* ==================================================
   6. SHARED PAGE SECTIONS: shared section padding, shared h1 spacing on inner pages
================================================== */

section > :first-child {
  margin-top: 0;
}

.page-header {
  padding: 5rem 2rem 2.5rem;
  text-align: center;
  background: var(--canvas-color);
  background-color: #fff;
}

.page-header h1 {
  font-family: "Playfair Display", serif;
  font-size: 2.6rem;
  font-weight: 500;
  color: var(--accent);
  margin: 0;
  margin-bottom: 1.25rem;
}

.page-header p {
    max-width: 640px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #555;
}

/* ==================================================
   7. HOME PAGE
================================================== */
/* 7.1 Hero */

.home-anchor {
  font-family: "Playfair Display", serif; /* or your brand serif */
  font-size: 2.75rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 500;
  line-height: 1.25;
  color: white;
  margin-bottom: 1.5rem;

}

.hero p {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  font-style: italic;
  line-height: 1.6;
  max-width: 640px;
  margin: 0 auto;
  color: white;
  opacity: 0.9;
}

.hero {
  position: relative;
  padding: 8rem 2rem;
  text-align: center;
  background-image: url('../images/hero.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(31, 42, 68, 0.55); /* navy tint */
  z-index: 1;
}

.hero h1,
.hero .tagline {
  position: relative;
  z-index: 2;
}

/* Tagline */
.hero-content p {
  font-size: 1.25rem;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.6;
}

/* CTA Button */
.hero-button {
  margin-top: 2.5rem;
}

.hero-button:hover {
  color: #000;
}

/* 12/21/25 Preview */

.service-preview {
  max-width: 1100px;
  margin: 4rem auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.service-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 14px;
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 5;
  transition: transform 0.4s ease;
}

.service-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  color: #fff;
  background: rgba(20, 28, 46, 0.55); /* navy overlay */
  opacity: 0;
  transition: opacity 0.3s ease;
  text-align:center;
  width: 100;
}

.service-card:hover img {
  transform: scale(1.04);
}

.service-card:hover .service-label {
  opacity: 1;
}

.service-preview h2 {
  grid-column: 1 / -1;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  line-height: 1.2;
  text-align: center;
  margin-bottom: 2rem;
}

/* 7.2 Home Intro / Manifesto */

.home-manifesto {
  font-family: "Playfair Display", serif;
  font-size: 2.6rem;
  line-height: 1.35;
  color: var(--navy);
  max-width: 900px;
  margin: 0 auto 2rem;
  text-align: center;
}

.home-support {
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
  line-height: 1.6;
  max-width: 780px;
  margin: 0 auto 2rem;
  text-align: center;
}

.home-what {
  padding: 6rem 2rem;
  text-align: center;
}

.home-what h2 {
  max-width: 700px;
  margin: 1.5rem auto 3rem;
}

.home-what-grid {
  max-width: 720px;
  margin: 0 auto 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 4rem;
}

.home-what h3 {
  margin-bottom: 0.75rem;
}

.home-intro {
  max-width: 720px;
  margin: 5rem auto;
  padding: 0 2rem;
  text-align: center;
}

.intro-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.75rem;
  color: #BAA898;
  margin-bottom: 1rem;
}

.home-intro h2 {
  font-size: 2.3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.intro-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #444;
}


/* 7.3 Home About */

.home-about-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  gap: 3rem;
  align-items: center;
}

.home-about-photo {
  flex: 1;
  max-width: 360px;
}

.home-about-photo img {
  width: 100%;
  height: auto;
  border-radius: 50%;
  display: block;
  border: 2px solid var(--accent);
}

.home-about-text h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  margin-bottom: 1.5rem;
}

.home-about-text p {
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  color: rgba(31, 42, 68, 0.85);
  text-align: left;
  font-weight: 500;
}

.home-about-cta {
  margin: 3rem auto 0;
  text-align: center;
  max-width: 480px;
}

.home-about {
  background: #f7f7f7;
  padding: 6rem 2rem;
  text-align: center;
}

.home-about-text {
  text-wrap: balance;
  max-width: 60ch;
}

/* 7.4 Home Supporting Elements, Accents */

.home-footnote {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: rgba(31,42,68,0.65);
  text-align: center;
}

.home-editorial {
  background: #fff;
}

.home-accent {
  padding: 4rem 2rem;
  text-align: center;
  font-style: italic;
  color: #BAA898;
}

/* ==================================================
   8. SERVICES PAGE
================================================== */

.services {
  padding: 0 2rem 5rem;
  background: #fff;
}

.services-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.services h1 {
  grid-column: 1 / -1; /* makes heading span both columns */
  text-align: center;
  font-size: 2.6rem;
  margin-bottom: 3rem;
}

.service-block {
  text-align: center;
  margin-bottom: 0;
}

.service-images {
  margin-bottom: 1.5rem;
}

.service-images img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.service-block h2 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.service-caption {
  max-width: 500px;
  margin: 0 auto;
  color: #444;
  font-size: 1.05rem;
  line-height: 1.7;
}

.book-button-wrapper {
  display: flex;
  justify-content: center;
  grid-column: 1 / -1;
  margin-top: 0;
}

/* ==================================================
   9. PORTFOLIO PAGE
================================================== */

.portfolio {
  background: var(--canvas-color);
  padding: 0 0 4rem;
}

.portfolio-container {
  max-width: none;
  padding: 0 2rem;
}

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

.portfolio-grid img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  display: block;
  border-radius: 0;
}

/* ==================================================
   10. CONTACT PAGE
================================================== */

.contact {
  padding: 5rem 2rem;
  background: #fff;
}

.contact-container {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.contact h1 {
  font-size: 2.6rem;
  margin-bottom: 1rem;
  margin-top: 0;
  font-weight: 500;
}

.contact-intro {
  color: #555;
  margin-bottom: 3rem;
  font-size: 1.1rem;
  line-height: 1.7;
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: left;
}

.contact-form label {
  font-size: 1rem;
  color: #333;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.9rem 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  color: #333;
  transition: border 0.2s ease;
}

input,
textarea {
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.5;
  color: inherit;
}

textarea {
  min-height: 140px;
  resize: vertical;
}
/* ==================================================
   11. FORMS (GLOBAL): inputs, labels, buttons
================================================== */

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
  outline: none;
}

.contact-form button:hover {
  background: var(--accent);
  color: #000;
}

/* ==================================================
   12. UTILITIES AND OVERRIDES
================================================== */

.bg-accent-soft {
  background: var(--accent-light);
}

/* ==================================================
   13. BUTTONS (Updated 12/24/25)
================================================== */

/* Primary buttons (Booking, Submit, Main CTAs) */
.button,
.contact-form button {
  display: inline-block;
  margin: 1.5rem auto 0;

  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-decoration: none;

  padding: 0.75rem 2rem;
  background-color: var(--accent);
  color: #fff;

  border: none;
  border-radius: 6px;
  cursor: pointer;

  transition: background-color 0.2s ease, color 0.2s ease;
}

.button:hover,
.contact-form button:hover {
  color: #000;
}

/* Contact form button specifics */
.contact-form button {
  font-family: 'Playfair Display', serif;
  width: fit-content;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  margin-top: 1rem;
}

/* =========================
   SECONDARY BUTTON
   (Return Home, low-emphasis actions)
   ========================= */

.book-button {
  display: inline-block;
  margin-top: 2rem;

  font-family: inherit;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;

  padding: 0.75rem 2rem;
  border-radius: 999px;

  background: transparent;
  color: #000;
  border: 1px solid #000;

  cursor: pointer;

  transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
}

.book-button:hover {
  background: var(--accent);
  color: #000;
  transform: translateY(-2px);
}

.book-button:active {
  transform: translateY(0);
}

.book-button:focus {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* ==================================================
   13. BUTTONS
================================================== */
/* Base button style — used everywhere */
.button,
.contact-form button,
.book-button {
  display: inline-block;
  padding: 0.75rem 2rem;

  background-color: var(--accent); /* champagne */
  color: #fff;

  text-decoration: none;
  border: none;
  border-radius: 6px;

  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.08em;

  cursor: pointer;
  transition: color 0.2s ease, background-color 0.2s ease;
}

/* Hover behavior — matches existing buttons */
.button:hover,
.contact-form button:hover,
.book-button:hover {
  color: #000;
}

/* Contact form button refinements */
.contact-form button {
  font-family: 'Playfair Display', serif;
  width: fit-content;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  margin-top: 1rem;
}

/* Optional active state (kept subtle) */
.button:active,
.contact-form button:active,
.book-button:active {
  transform: translateY(0);
}

/* ==================================================
   14. MEDIA QUERIES
================================================== */

/* ---------- NAV / TABLET ---------- */
@media (max-width: 900px) {

  .nav-left,
  .nav-icons {
    display: none;
  }

  .nav-container {
    justify-content: center;
    position: relative;
  }

  .logo a {
    font-size: 1.6rem;
  }

  .hamburger {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    z-index: 2001;
  }

  .mobile-menu {
    top: 70px;
    width: 100%;
    padding: 2rem 1.5rem;
  }

  .mobile-menu a {
    font-size: 1.6rem;
    text-align: right;
  }
}


/* ---------- TABLET + MOBILE ---------- */
@media (max-width: 768px) {

  /* Page headers */
  .page-header {
    padding: 3.5rem 1.5rem 2rem;
  }

  .page-header h1 {
    margin-bottom: 1rem;
  }

  /* Section padding */
  .services,
  .contact {
    padding: 0rem 1.5rem 3.5rem;
  }

    /* Home About */
  .home-about-inner {
    flex-direction: column;
    text-align: center;
  }

  .home-about-text {
    max-width: 100%;
  }

  .home-about-text p {
    text-align: center;
  }

  .home-about-photo {
  max-width: 320px;
  margin: 0 auto 2rem;
}

  /* 12/21 Services Preview on Home Page */

    .service-preview {
    grid-template-columns: 1fr;
  }

  .service-label {
    opacity: 1;
    background: rgba(20, 28, 46, 0.45);
  }


  /* Portfolio: edge-tight gallery */
  .portfolio {
    padding-left: 0;
    padding-right: 0;
  }

  .portfolio-container {
    padding: 0 0.5rem;
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }

  /* Services */
  .services-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact {
    padding-top: 3rem;
  }
  
  .home-about-text h2 {
    text-align: center;
  }

  h1 {
    line-height: 1.25;
  }

  .page-header h1,
  .services h1,
  .contact h1 {
    font-size: 2.1rem;
  }

  .home-manifesto {
    font-size: 2.05rem;
    line-height: 1.25;
    max-width: 18ch;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (hover: none) {
  .service-label {
    opacity: 1;
  }
}

/* ---------- SMALL PHONES ---------- */
@media (max-width: 600px) {

  .hero {
    padding: 6rem 1.5rem;
  }

  .hero h1 {
    font-size: 2.4rem;
  }

  .hero-content p {
    font-size: 1.1rem;
  }

  .home-intro {
    margin: 4rem auto;
  }

  .home-intro h2 {
    font-size: 1.8rem;
  }
}

/* ---------- iPad Portrait: Home About (side-by-side, balanced) ---------- */
@media (min-width: 769px) and (max-width: 900px) {
  .home-about-inner {
    display: flex;
    align-items: center;
    gap: 2.5rem;
  }

  .home-about-photo {
    flex: 0 0 38%;
    max-width: 38%;
  }

  .home-about-photo img {
    width: 100%;
    height: auto;
  }

  .home-about-text {
    flex: 1;
    max-width: 62%;
  }
}





/* ==================================================
   15. POLICIES
================================================== */

.privacy {
  padding: 5rem 2rem;
  background: #fff;
}

.privacy-container {
  max-width: 850px;
  margin: 0 auto;
  text-align: left;
}

.privacy h1 {
  text-align: center;
  font-size: 2.6rem;
  color: var(--accent);
  margin-bottom: 2.5rem;
}

.privacy h2 {
  font-size: 1.6rem;
  margin-top: 3rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: #333;
  text-align: center;
}

.privacy h3 {
  font-size: 1.25rem;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #333;
}

.privacy p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #444;
}

.privacy ul {
  margin-left: 1.25rem;
  padding-left: 0.5rem;
  line-height: 1.7;
  color: #444;
}

.privacy a {
  color: var(--accent);
  text-decoration: underline;
}

.privacy .last-updated {
  margin-top: 2.5rem;
  font-size: 0.9rem;
  color: #777;
  text-align: center;
}

.form-legal {
  font-size: 0.85rem;
  color: #777;
  margin-top: 1rem;
  text-align: center;
}

.form-legal a {
  color: var(--accent);
  text-decoration: underline;
}