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

:root {
  --bg: #ffffff;
  --bg-alt: #ffffff;
  --text: #111111;
  --muted: #666666;
  --border: #d5d5d5;
  --accent: #000000; /* staying true to black & white */
}

html, body {
  height: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Playfair Display", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Layout helpers */

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
  position: relative; /* for social icons in Contact */
}

.section-alt {
  background-color: var(--bg-alt);
}

/* Header / Nav */

.site-header {
  position: fixed;   /* key change */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;

  background: transparent;
  border-bottom: none;

  transition: transform 0.3s ease;
}

.site-header.hide {
  transform: translateY(-100%);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  color: #ffffff;
}

.logo {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: #ffffff;
}

.logo:visited {
  color: #000000;
}


.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background-color: var(--accent);
  transition: width 0.2s ease;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-links a:hover::after {
  width: 100%;
}

/* Hero */

.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 72px; /* offset for fixed header */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/*.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.75),
    rgba(0, 0, 0, 0.45),
    rgba(0, 0, 0, 0.2)
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 550px;
  padding: 5rem 0;
  color: #ffffff;
  transform: translateY(-64px);
}

.hero-kicker {
  font-family: "Playfair Display", serif;
  text-transform: uppercase;
  letter-spacing: 0.25rem;
  font-size: 0.8rem;
  margin-bottom: 1.25rem;
  opacity: 0.9;
  color: #ffffff;
}
*/

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: 1.5 rem;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: #D9D4C9;
  font-weight: 500;
}

/*
.hero-subtitle {
  font-family: "Playfair Display", serif;
  max-width: 700px;
  font-size: 1.2rem;
  color: #D9D4C9;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}*/

/* Buttons */

 .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.75rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
}
/*
.btn1 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.75rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
}
*/
.btn.primary {
  background-color: #ffffff00;
  color: #ffffff;
  border-color: #ffffff;
}

.btn.primary:hover {
  background-color: #ffffff;
  color: #000000;
}

.btn.ghost {
  background-color: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.6);
}

/*
.btn1.primary {
  background-color: #ffffff00;
  color: #ffffff;
  border-color: #ffffff;
}

.btn1.primary:hover {
  background-color: #969696;
}

.btn1.ghost {
  background-color: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.6);
}

.btn.ghost:hover {
  background-color: rgba(255, 255, 255, 0.08);
}

.btn1.ghost:hover {
  background-color: rgba(255, 255, 255, 0.08);
}*/


/* HERO SLIDESHOW */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

/* SLIDES */
.hero-slider {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

/* OVERLAY */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
}

/* CENTER CONTENT */
.hero-center {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
}

.hero-center h1 {
  margin-bottom: 2rem;
}

/* LINE */
.hero-line {
  width: 80px;
  height: 1px;
  background: #fff;
  margin: 20px 0;
}

/* HERO DOTS */
.hero-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 2;
}

.dot {
  width: 8px;
  height: 8px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.dot.active {
  background: #ffffff;
  transform: scale(1.2);
}

/* Horizontal gallery on home */

.gallery-section {
  padding: 3rem 0 2rem;
}

.gallery-header {
  display: flex;
  justify-content: flex-start;
  align-items: center;   /* 👈 THIS centers vertically */
  height: 30px;         /* 👈 match gallery image height */
  margin-bottom: 2.8rem;
  margin-left: 2rem;  /* cancels container padding */
}

.gallery-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
}

.gallery-header p {
  color: var(--muted);
  font-size: 0.9rem;
  max-width: 24rem;
}

/* Widen gallery header container like header/footer */
.gallery-section > .container {
  max-width: 1360px;  /* same as header/footer */
  padding: 0 1rem;    /* closer to edges */
}

/* Full-width strip */
.gallery-viewport {
  width: 100vw;
  overflow: hidden;
  position: relative;
}


.gallery-track {
  display: flex;
  align-items: stretch;
  gap: 0rem;
  will-change: transform;
  padding-left: 2vw;   /* creates left-side partial */
  transform: translateX(-14vw);  /* 👈 key fix */
}

/* 4 frames visible */
.gallery-item {
  flex: 0 0 28vw;   /* smaller than 33% */
  max-width: 28vw;
  border-radius: 0;    /* sharp edges */
  overflow: hidden;
  border: none;
  background-color: #ffffff;
}

.gallery-item img {
  width: 100%;
  height: 700px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

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

@media (max-width: 900px) {
  .gallery-item {
    flex: 0 0 50vw;    /* 2 visible on smaller screens */
    max-width: 50vw;
  }
}

@media (max-width: 600px) {
  .gallery-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .gallery-item {
    flex: 0 0 80vw;    /* 1 main frame on tiny screens */
    max-width: 81vw;
  }
}

/* Quote section on home */
.quote-section {
  padding: 10rem 0; /* Height buffer between hero & gallery */
  background-color: var(--bg); /* Same as home background */
  text-align: center;
}

/* Quote fade-in animation */
.quote-section {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 2.4s cubic-bezier(0.22, 1, 0.36, 1),
            transform 2.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.quote-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.quote-section blockquote1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 6rem; /* bold dramatic size*/
  font-weight: 200;
  line-height: 1.3;
  color: #5C4637;
  text-align: center;

  max-width: 1200px;
  margin: 0 auto;

  letter-spacing: 1px;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  
  opacity: 0.95;
}

.quote-section blockquote2 {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  line-height: 1.35;
  max-width: 600px;
  margin: 0 auto;
  color: #5C4637;
  font-weight: 400;
  opacity: 0.55;
  letter-spacing: 1px;
}

/* Section headers */

.section-header {
  margin-bottom: 2.5rem;
}

.section-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  margin-bottom: 4rem;
  color: #5C4637;
}

.section-header p {
  max-width: 28rem;
  color: var(--muted);
  font-size: 0.95rem;
  color: #5C4637;
}


/* Work grid */

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* exactly 3 equal columns */
  gap: 2rem;                            /* breathing room between tiles */
  max-width: 1000px;                      /* widen the grid so tiles are larger */
  margin: 0 auto;                         /* center the grid in the page */
  padding: 0 1.5rem;                      /* keep small page-side padding */
  align-items: start;
}

/* Square tiles with hard edges */
.work-item {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  border: none;
  background-color: #ffffff;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  margin-bottom: 2.5rem;
}

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

.work-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.08);
}

/* Title overlay at bottom on hover - specifically for grid tiles */
.work-grid .work-meta {
  position: absolute;
  inset: 0;
  
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  background: rgba(0, 0, 0, 0.55);
  color: #ffffff;

  opacity: 0;
  transform: scale(1.05);
  transition: opacity 0.25s ease, transform 0.35s ease;
  padding: 0 1rem;
}

.work-grid .work-item:hover .work-meta {
  transform: scale(1);
  opacity: 1;
}

.work-grid .work-meta h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.9rem;
  font-weight: 300;
  color: #ffffff !important;
  margin: 0;
}

.work-grid .work-meta p {
  color: rgba(255, 255, 255, 0.85);
  display: none;
}

.work-link {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

/* Work detail pages */

.work-hero {
  padding-top: 120px;
  padding-bottom: 4rem;
}

/* TITLE */
.work-title {
  font-family: "Playfair Display", serif;
  font-size: 2.4rem;
  margin-bottom: 20px;
}

/* TOP ROW (for right meta) */
.work-top {
  display: flex;
  justify-content: left;
  margin-bottom: 30px;
}

/* META (right aligned block) */
.work-top .work-meta {
  font-family: "Playfair Display", serif;
  max-width: 650px;
  text-align: left;
  color: #000000;
  font-size: 0.9rem;
  letter-spacing: 0.05rem;
}

/* DESCRIPTION */
.work-description {
  max-width: 1100px;
  font-family: "Playfair Display", sans-serif;
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 40px;
  color: #000000;
}

.work-header h1 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  margin-bottom: 0.75rem;
  color: #000000;
}

.work-tagline {
  font-family: "Playfair Display", serif;
  color: #000000;
  font-size: 0.8rem;
  max-width: 28rem;
}

/* This .work-meta is ONLY for the header area */
.work-header .work-meta {
  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
  color: #000000;
  letter-spacing: 0.05rem;
}

.work-header .work-meta p {
  font-family: "Playfair Display", serif;
  margin-bottom: 0.25rem;
  font-size: 1.05rem;
}

.work-header .work-meta span {
  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
  font-weight: 600;
  display: inline-block;
  margin-right: 0.4rem;
  color: #000000;
}

/* Extra spacing at the top of Work page */
.work-page {
  padding-top: 10rem;
}

/* Image gallery grid */

.work-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);  /* fixed columns */
  gap: 0.8rem;
}

.work-gallery img {
  width: 100%;
  display: block;
  height: 550px;       /* 👈 THIS is the missing piece */
  border-radius: 0;
  object-fit: cover;
  cursor: zoom-in;
}

/* Responsive for work pages */
@media (max-width: 900px) {
  .work-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Lightbox for work images */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;

  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 5000;
}

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
}

/* Visible state – ONLY this class is toggled */
.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
  cursor: zoom-out;
}

/* Lightbox navigation buttons */
.lightbox-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: rgba(0, 0, 0, 0.5);
  color: #ffffff;
  font-size: 2rem;
  width: 2.6rem;
  height: 2.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 999px;
  z-index: 5100;
}

.lightbox-prev {
  left: 1.5rem;
}

.lightbox-next {
  right: 1.5rem;
}

.lightbox-btn:hover {
  background: rgba(0, 0, 0, 0.75);
}


/* About page layout */
html, body {
  height: 100%;
  margin: 0;
}

body {
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}
.about-hero {
  text-align: center;
  margin: 10px 0 20px; /* reduced to avoid scroll */
  margin-bottom: 80px;
}

.about-hero p {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  letter-spacing: 2px;
  font-weight: 600;
}

.about-hero h1 {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  margin: 10px 0;
  font-weight: 400;
  letter-spacing: 2px;
  margin-bottom: 20px;
  color: #6b6b6b;
}

.about-hero .line {
  width: 100px;
  height: 1px;
  background: #aaa;
  margin: 10px auto;
}

/* ===== LAYOUT ===== */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;

  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;

  align-items: start;
}

/* ===== IMAGE ===== */
.about-image {
  display: flex;
  justify-content: right;
}

.about-image img {
  width: 100%;
}

/* ===== TEXT ===== */
.about-copy p {
  font-family: "Playfair Display", sans-serif;
  font-size: 1.05rem;   /* reduced */
  line-height: 1.5;  /* reduced */
  color: #000000;
  margin-bottom: 12px;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .about-layout {
    grid-template-columns: 1fr;
  }
}


/* Based in block */
.about-block {
  margin-top: 0.5rem;
}

.about-block h4 {
  font-family: "Playfair Display", serif;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 0.4rem;
  color: #000000;
}

.about-block p {
  font-size: 1.2rem;
  color: #000000;
}


/* SERVICES LAYOUT */
.services-layout {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 20px;
  color: #000;
}

/* HEADER */
.services-header {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  margin-bottom: 50px;
  text-transform: uppercase;
}

/* EACH SERVICE ROW */
.service-row {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 60px;
  margin-bottom: 100px;
}

/* TEXT */
.service-text {
  flex: 1;
}

.service-text h3 {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  margin-bottom: 10px;
}

.service-text p {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}

/* IMAGES */
.service-images {
  flex: 1;
  display: flex;
  gap: 20px;
}

.service-images img {
  width: 48%;
  height: 280px;
  object-fit: cover;
  display: block;
}

/* NOTE */
.service-note {
  font-family: "Playfair Display", serif;
  font-size: 16px;
  margin-top: 40px;
}

/* MOBILE */
@media (max-width: 768px) {
  .service-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .service-images {
    width: 100%;
  }

  .service-images img {
    width: 48%;
  }
}

/* EDITORIAL SERVICE LAYOUT */
.service-editorial {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 50px;
}

/* IMAGE SIDE */
.service-visual {
  position: relative;
  width: 100%;
}

/* MAIN IMAGE */
.main-img {
  width: 100%;
  height: 610px;
  object-fit: cover;
  display: block;
}

/* OVERLAY IMAGE */
.overlay-img {
  position: absolute;
  bottom: -40px;

  left: -100px;          /* 👈 pushes image further left */
  width: 250px;         /* 👈 increased size */
  height: 300px;

  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* TEXT SIDE */
.service-content h2 {
  font-family: "Playfair Display", serif;
  letter-spacing: 1px;
  font-size: 1.15rem;
  margin-bottom: 20px;
  margin-top: 0;
}

.service-content p {
  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
  color: #000000;
  max-width: 420px;
  margin-bottom: 20px;
}


/* Contact layout */

.contact-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)); /* 50–50 columns */
  gap: 3rem;
  align-items: center;
}

.contact-copy h2 {
  font-family: "Playfair Display", sans-serif;
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: #000000;
}

.contact-copy p {
  font-family: "Playfair Display", sans-serif;
  color: #000000;
  max-width: 26rem;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.contact-copy p1 {
  font-family: "Playfair Display", sans-serif;
  color: #000000;
  max-width: 26rem;
  font-size: 1.1rem;
}

.contact-details {
  font-family: "Playfair Display", serif;
  border-left: 1px solid var(--border);
  padding-left: 1.5rem;
  margin-top: 3.5rem; /* Push form downward */
  color: #000000;
}

/* Email link UI improvements */
.contact-copy a {
  color: inherit;
  font-size: 1.1rem;
  text-decoration: none;
  opacity: 0.8; /* makes it muted */
  transition: opacity 0.2s ease;
  cursor: pointer;
}

.contact-copy a:hover {
  opacity: 1;
}


/* Inquiry form */

.inquiry-form {
  font-family: "Playfair Display", serif;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  font-family: "Playfair Display", serif;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-row label {
  font-family: "Playfair Display", serif;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #000000;
}

.form-row input,
.form-row select,
.form-row textarea {
  font-family: "Playfair Display", serif;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  background-color: #fafafa;
  outline: none;
  font-family: inherit;
  color: #000000;
}

.form-row textarea {
  border-radius: 1.2rem;
  resize: vertical;
  min-height: 140px;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: #000;
  background-color: #ffffff;
}

.form-submit {
  font-family: "Playfair Display", serif;
  align-self: flex-start;
  margin-top: 0.75rem;

  background: #000000;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.75rem 1.8rem;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  letter-spacing: 0.05em;
  transition: background 0.25s ease, transform 0.2s ease;
}

.form-submit:hover {
  background: #3d2f24;
  transform: translateY(-2px);
}

.form-submit:active {
  transform: translateY(0);
}



/* Footer */

.site-footer {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0 2.5rem;
  background-color: #ffffff;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.footer-note {
  opacity: 0.8;
}

.footer-social {
  margin-left: auto;
  display: flex;
  flex-direction: row;      /* force horizontal */
  align-items: center;
  justify-content: flex-end;
  gap: 1.8rem;
}

.footer-social a {
  display: inline-flex;     /* keeps svg + hit area tidy */
  align-items: center;
  justify-content: center;
  color: #555555;           /* clear grey */
  transition: color 0.25s ease;
}

.footer-social a:hover {
  color: #000000;           /* darker on hover */
}

.footer-social svg {
  width: 28px;
  height: 28px;
}

.footer-social .icon-behance svg {
  transform: translateY(4px) scale(1.6);   /* 1.2–1.3 is usually the sweet spot */
  transform-origin: center;
}

.site-credit {
  margin-left: auto;
  font-size: 0.8rem;
  opacity: 1;
  margin-top: 4px;
}


/* Responsive */

@media (max-width: 900px) {
  .about-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-details {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
  }

  .hero {
    background-position: center;
  }

  .hero-content {
    padding: 4.5rem 0 4rem;
  }
}

@media (max-width: 640px) {
  .header-inner {
    padding-top: 0.4rem;
    padding-bottom: 0.4rem;
  }

  .nav-links {
    gap: 1rem;
    font-size: 0.75rem;
  }

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

  .hero-subtitle {
    font-size: 0.9rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .section {
    padding: 3.5rem 0;
  }
}

/* Fix spacing under fixed header on separate pages */

.page-hero {
  padding-top: 120px;
}

/* Highlight active menu item */
.nav-links .active {
  color: #000;
}

.nav-links .active::after {
  width: 100%;
}

.social-links {
  display: flex;
  gap: 1.2rem;
  margin-top: 1.25rem;
}

.social-links a {
  color: var(--muted);
  transition: color 0.2s ease;
}

.social-links a:hover {
  color: #000000;
}

.social-links svg {
  width: 28px;
  height: 28px;
}


/* Tighter edge spacing for header + footer */
.site-header .container,
.site-footer .container {
  max-width: 1360px; /* widen layout */
  padding: 0 1rem;   /* less space on both sides */
}

/* Brand Copy block below gallery */
.brand-copy-section {
  padding: 0 0 5rem ;   /* more bottom space */
  background-color: var(--bg);
}

.brand-copy-layout {
  max-width: 1360px;
  margin-left: 0;
}

.brand-copy-layout h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  margin-top: 0;
  font-weight: 400;        /* important */
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: #5C4637;
}


/* HOMEPAGE HEADER COLOR ONLY */
.home-page .site-header .logo,
.home-page .site-header .nav-links a {
  color: #ffffff;
}
