@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Jost:wght@300;400;500&display=swap');

:root {
  --sage: #9caa8f;
  --sage-light: #c8d5c0;
  --sage-dark: #6e836a;
  --cream: #f8f4ee;
  --warm-white: #fdfaf6;
  --brown: #7a6152;
  --brown-light: #c4a98a;
  --brown-dark: #4a3728;
  --blush: #e8d8cc;
  --text: #3a2e28;
  --text-light: #7a6e68;
  --border: #e0d8d0;
  --shadow: rgba(58, 46, 40, 0.08);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  color: var(--text);
  background: var(--warm-white);
  overflow-x: hidden;
}

::selection {
  background: var(--sage-light);
  color: var(--brown-dark);
}

/* TYPOGRAPHY */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.display-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 8vw, 5.5rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.01em;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--brown-dark);
  margin-bottom: 1rem;
}

.eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: 1.2rem;
  display: block;
}

p {
  line-height: 1.8;
  color: var(--text-light);
  font-size: clamp(0.95rem, 1vw, 1.05rem);
}

a { text-decoration: none; color: inherit; }

/* NAVIGATION */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.5rem clamp(1.5rem, 5vw, 4rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s ease;
}

nav.scrolled {
  background: rgba(253, 250, 246, 0.95);
  backdrop-filter: blur(12px);
  padding: 1rem clamp(1.5rem, 5vw, 4rem);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 20px var(--shadow);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--brown-dark);
}

.nav-logo span {
  color: var(--sage-dark);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--sage-dark);
  transition: width 0.3s ease;
}

.nav-links a:hover { color: var(--brown-dark); transform: translateY(-1px); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--sage-dark);
  color: white !important;
  padding: 0.6rem 1.5rem;
  border-radius: 4px;
  transition: background 0.3s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--brown-dark) !important; color: white !important; }

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--brown-dark);
  transition: all 0.3s;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}


/* HERO */
.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; 
  text-align: center; 
  transform: translateY(-50px);
  padding: 3rem clamp(1.5rem, 5vw, 4rem);
  position: relative;
  z-index: 2;
}

.hero-content .display-title {
  color: var(--brown-dark);
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease 0.3s forwards;
}

.hero-content .display-title em {
  font-style: italic;
  color: var(--sage-dark);
}

.hero-tagline {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 380px;
  margin-bottom: 3rem;
  line-height: 1.9;
  opacity: 0;
  animation: fadeUp 1s ease 0.6s forwards;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  opacity: 0;
  animation: fadeUp 1s ease 0.9s forwards;
}

.btn-primary {
  background: var(--brown-dark);
  color: var(--cream);
  padding: 1rem 2.5rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  display: inline-block;
  border-radius: 4px;
}

.btn-primary:hover {
  background: var(--sage-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--shadow);
}

.btn-outline {
  color: var(--brown-dark);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--brown-light);
  padding-bottom: 3px;
  transition: all 0.3s;
}

.btn-outline:hover {
  color: var(--sage-dark);
  border-color: var(--sage-dark);
}

.btn-primary:active {
  transform: translateY(1px) scale(0.98);
  box-shadow: 0 2px 8px var(--shadow);
}

a, button {
  -webkit-tap-highlight-color: transparent;
}

button {
  border-radius: 4px;
}

.hero-image {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

.hero-image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--blush) 0%, var(--sage-light) 50%, var(--brown-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: fadeIn 1.2s ease 0.2s forwards;
}

.hero-image-placeholder .img-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.15em;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: fadeIn 1.2s ease 0.2s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 6rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  opacity: 0;
  animation: fadeUp 1s ease 1.4s forwards;
}

.hero-scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-light);
  animation: fadeScrollText 2.5s ease-in-out infinite;
}

.scroll-line {
  width: 50px;
  height: 1px;
  background: var(--brown-light);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--sage-dark);
  animation: scrollLine 1.6s ease-in-out infinite;
}

/* SECTIONS */
section { padding: 6rem 0; } 

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
}

/* TESTIMONIALS */
.testimonial {
  padding: 4rem 0;
  background: var(--cream);
  text-align: center;
  position: relative;
}
.testimonial-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-style: italic;
  color: var(--brown-dark);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  position: relative;
}
.testimonial-quote::before {
  content: "“";
  font-size: 3rem;
  position: absolute;
  left: -1rem;
  top: -1rem;
  color: var(--sage-light);
  opacity: 0.4;
}
.testimonial-author {
  display: block;
  margin-top: 1.2rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage-dark);
}
.testimonial::before {
  content: "";
  position: absolute;
  top: 2rem; 
  left: 10%;
  right: 10%;
  height: 1px;
  background: rgba(0,0,0,0.08);
}

/* ABOUT STRIP */
.about-strip {
  background: var(--cream);
  padding: 5rem 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-img-main {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
}

.about-img-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, var(--sage-light), var(--blush));
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-img-placeholder span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.1em;
}

.about-accent {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 60%;
  aspect-ratio: 1;
  border: 1px solid var(--sage-light);
  z-index: -1;
}

.about-text .section-title { margin-bottom: 1.5rem; }
.about-text p { margin-bottom: 1.5rem; }

.about-signature {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-style: italic;
  color: var(--sage-dark);
  margin-top: 2rem;
}

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

/* SERVICES */
.services { background: var(--warm-white); }

.services-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 5rem;
}

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

.service-card {
  background: var(--cream);
  padding: 3.5rem 2.5rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 0;
  background: var(--sage-dark);
  transition: height 0.4s ease;
}

.service-card:hover { background: white; box-shadow: 0 20px 60px var(--shadow); }
.service-card:hover::before { height: 100%; }

.service-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  color: var(--sage-light);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 1.5rem;
}

.service-card h3 {
  font-size: 1.4rem;
  color: var(--brown-dark);
  margin-bottom: 1rem;
}

.service-card p { font-size: 0.9rem; }

.service-price {
  margin-top: 2rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--sage-dark);
  font-style: italic;
}

/* HOMEPAGE GALLERY (CONTROLLED LAYOUT) */
/* Reset anything global */
.gallery-home .gallery-item {
  aspect-ratio: auto;
  overflow: hidden;
  position: relative;
}

/* Your original layout */
.gallery-home .gallery-item:first-child {
  grid-row: 1 / 3;
  grid-column: 1 / 2;
}

.gallery-home .gallery-item:nth-child(4) {
  grid-row: 1 / 3;
  grid-column: 4 / 5;
}

/* Image behaviour */
.gallery-home {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 280px 280px;
  gap: 6px;
  max-width: 900px;
  margin: 0 auto;
}

.gallery-cta {
  max-width: 900px; /* matches your gallery width */
  margin: 3rem auto 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}
.gallery-cta-text {
  color: rgba(255,255,255,0.7);
  max-width: 420px;
}
.btn-gallery {
  background: var(--sage-dark);
  color: white;
}
.btn-gallery:hover {
  background: var(--cream);
  color: var(--brown-dark);
}

/* GALLERY */
.gallery { background: var(--brown-dark); padding: 7rem 0; }
.gallery .section-title { color: var(--cream); }
.gallery .eyebrow { color: var(--sage-light); }

.gallery-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
}

.gallery-header p { color: rgba(255,255,255,0.5); max-width: 300px; }

.gallery-link {
  color: var(--sage-light);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--sage-dark);
  padding-bottom: 3px;
  white-space: nowrap;
  margin-left: 2rem;
  transition: color 0.3s;
}
.gallery-link:hover { color: white; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 10px;
}

.gallery-item {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  position: relative;
}

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

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

.gallery-item-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s ease;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: rgba(255,255,255,0.4);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
}

.gallery-item:nth-child(1) .gallery-item-placeholder { background: linear-gradient(160deg, #9caa8f, #6e836a); }
.gallery-item:nth-child(2) .gallery-item-placeholder { background: linear-gradient(160deg, #c4a98a, #7a6152); }
.gallery-item:nth-child(3) .gallery-item-placeholder { background: linear-gradient(160deg, #e8d8cc, #c4a98a); }
.gallery-item:nth-child(4) .gallery-item-placeholder { background: linear-gradient(160deg, #c8d5c0, #9caa8f); }
.gallery-item:nth-child(5) .gallery-item-placeholder { background: linear-gradient(160deg, #7a6152, #4a3728); }
.gallery-item:nth-child(6) .gallery-item-placeholder { background: linear-gradient(160deg, #9caa8f, #c8d5c0); }

.gallery-item:hover .gallery-item-placeholder { 
  transform: scale(1.05); 
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(74, 55, 40, 0.4);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem; /* 👈 ADD THIS */
  text-align: center; /* 👈 optional but cleaner */
}

.gallery-overlay span {
  max-width: 80%;
  line-height: 1.4;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: white; font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase; }

/* BLOG */
.blog { background: var(--cream); }

.blog-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 4rem;
}

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

.blog-card {
  background: var(--warm-white);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px var(--shadow);
}

.blog-card-image {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.blog-card-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: rgba(255,255,255,0.5);
  transition: transform 0.5s ease;
}
.blog-card:hover .blog-card-image-placeholder { transform: scale(1.04); }

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-card:hover .blog-card-image img { transform: scale(1.04); }

.blog-card-body { padding: 2rem; }

.blog-meta {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: 0.8rem;
  display: flex;
  gap: 1rem;
}

.blog-card h3 {
  font-size: 1.3rem;
  color: var(--brown-dark);
  margin-bottom: 0.8rem;
  line-height: 1.3;
}

.blog-card p { font-size: 0.88rem; margin-bottom: 1.5rem; }

.read-more {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage-dark);
  border-bottom: 1px solid var(--sage-light);
  padding-bottom: 2px;
  transition: color 0.3s, border-color 0.3s;
}

.read-more:hover { color: var(--brown-dark); border-color: var(--brown-light); }

/* CONTACT */
.contact { background: var(--warm-white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 6rem;
  align-items: start;
}

.contact-info .section-title { margin-bottom: 1.5rem; }
.contact-info p { margin-bottom: 2.5rem; }

.contact-detail {
  margin-bottom: 1.5rem;
}

.contact-detail-label {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: 0.3rem;
}

.contact-detail-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--brown-dark);
}

.contact-form {
  display: grid;
  gap: 1.5rem;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }

.form-group { display: flex; flex-direction: column; gap: 0.5rem; }

.form-group label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
}

.form-group input,
.form-group textarea,
.form-group select {
  background: none;
  border: none;
  border-bottom: 1px solid var(--border);
  padding: 0.7rem 0;
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text);
  outline: none;
  transition: border-color 0.3s;
  width: 100%;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--sage-dark);
}

.form-group textarea { resize: none; height: 120px; }

.form-group select { cursor: pointer; }

.form-submit {
  margin-top: 0.5rem;
}

.form-success {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--cream);
  margin-top: 2rem;
  border-radius: 8px;
  animation: fadeUp 0.6s ease;
}

.form-success h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--brown-dark);
}

.form-success p {
  color: var(--text-light);
  margin-bottom: 1rem;
}

/* FOOTER */
footer {
  background: var(--brown-dark);
  color: var(--cream);
  padding: 4rem 0 2rem;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-brand .nav-logo { font-size: 1.8rem; color: var(--cream); margin-bottom: 1rem; display: block; }
.footer-brand .nav-logo span { color: var(--sage-light); }
.footer-brand p { color: rgba(255,255,255,0.4); font-size: 0.88rem; max-width: 260px; }

.footer-col h4 {
  font-family: 'Jost', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--sage-light);
  margin-bottom: 1.5rem;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.8rem; }
.footer-col ul li a { color: rgba(255,255,255,0.5); font-size: 0.88rem; transition: color 0.3s; }
.footer-col ul li a:hover { color: var(--cream); }

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 5%;
  right: 5%;
  height: 1px;
  background: rgba(255,255,255,0.1);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 2rem;
  padding-top: 2rem;
}

.footer-bottom p { color: rgba(255,255,255,0.3); font-size: 0.78rem; }

.social-links { display: flex; gap: 1.5rem; }
.social-links a { color: rgba(255,255,255,0.4); font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; transition: color 0.3s; }
.social-links a:hover { color: var(--sage-light); }

/* MOBILE NAV */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--warm-white);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
  transform: translateX(100%);
  transition: all 0.3s ease;
  padding: 6rem 2rem 3rem;
  justify-content: flex-start;
}

.mobile-nav.open { transform: translateX(0); }
.mobile-nav a { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; color: var(--brown-dark); letter-spacing: 0.08em; line-height: 1.2; }
.mobile-nav-close { position: absolute; top: 1.2rem; right: 1.5rem; background: none; border: none; font-size: 2rem; cursor: pointer; color: var(--text-light); }

/* ANIMATIONS */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  to { opacity: 1; }
}

.hero-scroll span {
  animation: fadeScrollText 2.5s ease-in-out infinite;
}

@keyframes fadeScrollText {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

@keyframes scrollLine {
  0% { left: -100%; }
  100% { left: 100%; }
}

.fade-in {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in:nth-child(1) { transition-delay: 0.1s; }
.fade-in:nth-child(2) { transition-delay: 0.2s; }
.fade-in:nth-child(3) { transition-delay: 0.3s; }

/* INNER PAGE HERO */
.page-hero {
  padding: 12rem 0 5rem;
  background: var(--cream);
  text-align: center;
}

.page-hero .display-title { font-size: clamp(2.5rem, 5vw, 4.5rem); color: var(--brown-dark); }

/* BLOG POST PAGE */
.post-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 4rem;
}

.post-content h1 { font-size: clamp(2rem, 4vw, 3rem); color: var(--brown-dark); margin-bottom: 1rem; }
.post-content h2 { font-size: 1.8rem; color: var(--brown-dark); margin: 2.5rem 0 1rem; }
.post-content h3 { font-size: 1.4rem; color: var(--brown-dark); margin: 2rem 0 0.8rem; }
.post-content p { margin-bottom: 1.5rem; }
.post-content img { width: 100%; height: auto; margin: 2rem 0; }
.post-content .post-meta { margin-bottom: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid var(--border); }

/* LIGHTBOX */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 500;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; object-fit: contain; }
.lightbox-close { position: absolute; top: 1.5rem; right: 2rem; color: white; font-size: 2rem; cursor: pointer; background: none; border: none; }

/* TOAST */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--brown-dark);
  color: var(--cream);
  padding: 1rem 2rem;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 1000;
}
.toast.show { transform: translateY(0); opacity: 1; }

/* RESPONSIVE */
/* mobile styles */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: flex; }
  nav { padding: 1.5rem clamp(1.5rem, 5vw, 4rem); }
  nav.scrolled { padding: 1rem clamp(1.5rem, 5vw, 4rem); }
  .container { padding: 0 clamp(1.5rem, 5vw, 4rem); }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .footer-brand { grid-column: 1 / -1; max-width: 420px; }
/* Hero — give content more breathing room on tablet */
  .hero-content { padding: 6rem 2.5rem 3rem; }

  /* About grid — less gap on tablet */
  .about-grid { gap: 3rem; }

  /* Contact grid — less gap on tablet */
  .contact-grid { gap: 3rem; }

  /* Gallery home — 2x2 layout on tablet portrait */
  .gallery-home { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(3, 220px); }
  .gallery-home .gallery-item:first-child,
  .gallery-home .gallery-item:nth-child(4) { grid-row: auto; grid-column: auto; }
}

@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }  
}

@media (max-width: 768px) {
.btn-primary,
.btn-outline,
.hamburger,
.mobile-nav-close,
.nav-cta,
.lightbox-close { touch-action: manipulation; }
.eyebrow { font-size: 0.6rem; margin-bottom: 1.5rem; }

.btn-primary,
.hamburger,
.nav-cta { min-height: 44px; min-width: 44px; padding: 0.8rem 1.5rem; }
.philosophy-grid { grid-template-columns: 1fr; gap: 1.5rem; }

.hero { grid-template-columns: 1fr; min-height: auto; text-align: center; }
.hero-content { padding: 5rem 2rem 1.5rem; }
.hero-image { height: clamp(220px, 55vw, 360px); margin: 0 1.25rem 1.5rem; }
.hero-scroll { left: 2rem; }
.hero .display-title { font-size: clamp(2.5rem, 8vw, 3.5rem); line-height: 1.15; }  .hero-tagline { font-size: clamp(0.95rem, 2.5vw, 1.05rem); }
.hero .btn-primary { width: 100%; padding: 1rem; font-size: 0.8rem; }

.about-grid { grid-template-columns: 1fr; gap: 3rem; }
.about-accent { display: none; }

.services-grid { grid-template-columns: 1fr; }
.services-grid, .blog-grid { gap: 1.5rem; }

.gallery-grid { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));}

.blog-grid { grid-template-columns: 1fr; }
.blog-header { flex-direction: column; align-items: flex-start; gap: 1rem; }

.contact-grid { grid-template-columns: 1fr; gap: 3rem; }
.form-row { grid-template-columns: 1fr; }

.footer-grid { grid-template-columns: 1fr; gap: 2.5rem; gap: 2rem; text-align: center; }
.footer-brand {
    max-width: 100%;
    margin: 0 auto;
  }
  .footer-brand p {
    margin: 0 auto;
  }
  .footer-col ul {
    padding: 0;
  }
  .site-logo {
    justify-content: center;
  }
.footer-bottom { flex-direction: column; gap: 1rem; text-align: center; max-width: 300px; margin: 0 auto; }

.gallery-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
.gallery-header p { max-width: 100%; }

.gallery-home { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(3, 200px); max-width: 100%; }
  
.gallery-home .gallery-item:first-child,
.gallery-home .gallery-item:nth-child(4) { grid-row: auto; grid-column: auto; }

.container { padding: 0 clamp(1.5rem, 5vw, 4rem); }
/* Stack hero buttons vertically on small screens */
.hero-actions {
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}
/* Make primary button full width on mobile — easier to tap */
.hero-actions .btn-primary {
  width: 100%;
  text-align: center;
}
/* Larger tap area on form inputs */
.form-group input,
.form-group textarea,
.form-group select {
  padding: 0.9rem 0;
  font-size: max(1rem, 16px); /* prevents iOS zoom-in on focus (iOS zooms if font < 16px) */
}
/* Tighten page-hero on mobile — currently 12rem top padding feels huge */
.page-hero {
  padding: 8rem 0 3rem;
}
/* Blog card body padding reduced on mobile */
.blog-card-body {
  padding: 1.4rem;
}
}

/* SITE LOGO */
.site-logo { display:flex; align-items:center; gap:0.7rem; text-decoration:none; }
.site-logo img { width: 60px; height: 60px; flex-shrink:0; }
.site-logo-text { font-family:'Cormorant Garamond',serif; font-size:1.2rem; font-weight:400; letter-spacing:0.06em; color:var(--brown-dark); line-height:1.15; }
.site-logo-text span { display:block; font-size:0.58rem; font-family:'Jost',sans-serif; font-weight:400; letter-spacing:0.28em; text-transform:uppercase; color:var(--sage-dark); margin-top:1px; }
.footer-logo-text { color:var(--cream) !important; }
.footer-logo-text span { color:var(--sage-light) !important; }
/* ABOUT IMAGE */
.about-image-wrap img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
  display: block;
  border-radius: 4px;
}

/* DESIGNER CREDIT */
.designer-credit {
  color: rgba(255,255,255,0.35);
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding-bottom: 1px;
  transition: color 0.3s, border-color 0.3s;
}

.designer-credit:hover {
  color: var(--sage-light);
  border-color: var(--sage-light);
}

/* ── GALLERY PAGE — VENUE GROUPS ── */
.gallery-venue-group { margin-bottom: 5rem; }

.gallery-venue-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

img {
  border-radius: 4px;
}

.gallery-venue-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--brown-dark);
  font-weight: 400;
  line-height: 1.2;
}

.gallery-venue-meta {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-top: 0.3rem;
}

.gallery-venue-count {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
  white-space: nowrap;
}

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

.gallery-venue-grid .gallery-item {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-venue-grid .gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-venue-grid .gallery-item:hover img { transform: scale(1.04); }

.gallery-venue-grid .gallery-item .gallery-overlay {
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-venue-grid .gallery-item:hover .gallery-overlay { opacity: 1; }

@media (max-width: 768px) {
  .gallery-venue-grid { grid-template-columns: 1fr 1fr; gap: 6px; }
  .gallery-venue-header { flex-direction: column; align-items: flex-start; }
  .gallery-venue-group { margin-bottom: 3.5rem; }
}

@media (max-width: 480px) {
  .gallery-venue-grid { gap: 4px; }
}

/* ── GALLERY CAPTIONS — permanent on touch devices ── */
@media (hover: none) {
  .gallery-item .gallery-overlay {
    opacity: 1 !important;
    background: linear-gradient(
      to top,
      rgba(74,55,40,0.75) 0%,
      rgba(74,55,40,0.4) 40%,
      transparent 75%
    );
    
    align-items: flex-end;
    justify-content: flex-start;
    padding: 0.8rem;
  }

  .gallery-item .gallery-overlay span {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-align: left;
    line-height: 1.4;
    max-width: 90%;
    text-shadow: 0 2px 6px rgba(0,0,0,0.5);
  }

  .gallery-item:hover img {
    transform: none;
  }
}

/* ── PROCESS SECTION ── */
.process { background: var(--warm-white); }

.process-header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 4rem;
}

.process-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  position: relative;
}

/* Subtle vertical divider between the two columns */
.process-steps::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 2rem;
  bottom: 2rem;
  width: 1px;
  background: var(--border);
  opacity: 0.5;
}

.process-step:hover {
  background: rgba(0,0,0,0.02);
}

.process-step {
  display: flex;
  gap: 1.8rem;
  align-items: flex-start;
  padding: 2.2rem 3rem 2.2rem 0;
  border-bottom: 1px solid var(--border);
}

/* Right column steps get left padding instead */
.process-step:nth-child(even) {
  padding: 2.2rem 0 2.2rem 3rem;
}

/* Remove bottom border from last two steps */
.process-step:nth-last-child(1),
.process-step:nth-last-child(2) {
  border-bottom: none;
}

.process-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--sage);
  opacity: 0.6;
  line-height: 1;
  flex-shrink: 0;
  width: 3rem;
  text-align: center;
}

.process-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  color: var(--brown-dark);
  margin-bottom: 0.6rem;
  font-weight: 400;
}

.process-content p {
  font-size: 0.88rem;
  line-height: 1.8;
  color: var(--text-light);
}

/* Connector line between number and content — subtle touch */
.process-step::after {
  display: none;
}

@media (max-width: 768px) {
  .process-steps {
    grid-template-columns: 1fr;
  }

  .process-steps::before {
    display: none;
  }

  .process-step,
  .process-step:nth-child(even) {
     padding: 2.8rem 3rem 2.8rem 0;
    border-bottom: 1px solid var(--border);
  }

  .process-step:last-child {
    border-bottom: none;
  }

  /* Re-apply border removal only for last item on mobile */
  .process-step:nth-last-child(1),
  .process-step:nth-last-child(2) {
    border-bottom: 1px solid var(--border);
  }

  .process-step:last-child {
    border-bottom: none;
  }
}

/* =========================
Favours Section
========================= */

.favours-section {
padding: 5rem 1.5rem;
background-color: #f8f6f3; /* soft warm neutral */
}

.favours-container {
max-width: 1100px;
margin: 0 auto;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 3rem;
align-items: center;
}

.favours-image img {
width: 100%;
height: auto;
object-fit: cover;
}

.favours-content h2 {
font-family: 'Cormorant Garamond', serif;
font-size: 2rem;
color: var(--brown-dark);
margin: 1rem 0;
}

.favours-content p {
color: var(--text-light);
line-height: 1.7;
margin-bottom: 1rem;
}

.favours-partner {
font-size: 0.9rem;
letter-spacing: 0.05em;
color: var(--text-light);
}

.favours-partner a {
color: var(--brown-dark);
text-decoration: none;
border-bottom: 1px solid rgba(0,0,0,0.1);
}

.favours-partner a:hover {
border-bottom: 1px solid var(--brown-dark);
}

.favours-link {
display: inline-block;
margin-top: 1.5rem;
font-size: 0.9rem;
letter-spacing: 0.08em;
text-transform: uppercase;
color: var(--brown-dark);
text-decoration: none;
position: relative;
}

.favours-link::after {
content: "";
display: block;
width: 0;
height: 1px;
background: var(--brown-dark);
transition: width 0.3s ease;
margin-top: 4px;
}

.favours-link:hover::after {
width: 100%;
}

/* =========================
Mobile Responsive
========================= */

@media (max-width: 768px) {
.favours-container {
grid-template-columns: 1fr;
}

.favours-content {
text-align: center;
}
}


