/* =========================================================
   Mata-Jardim José do Canto — Main Stylesheet
   ========================================================= */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400&family=Lato:wght@300;400;700&display=swap');

/* --- Variables --- */
:root {
  --green:  #2D4A2D;
  --green-light: #3d6b3d;
  --cream:  #F5EDD6;
  --cream-dark: #ece0c0;
  --stone:  #8B8074;
  --gold:   #C4A35A;
  --gold-light: #d4b870;
  --dark:   #1a2a1a;
  --white:  #ffffff;
  --nav-h:  72px;
  --camellia: #C9737F;
  --camellia-pale: #F7E8EA;
  --fern: #4E7A5A;
  --font-serif: 'Cinzel', Georgia, serif;
  --font-italic: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Lato', sans-serif;
  --transition: 0.3s ease;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--dark);
  line-height: 1.7;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* --- Language Toggle --- */
.pt { display: none; }
html.lang-pt .en { display: none; }
html.lang-pt .pt { display: block; }
html.lang-pt span.pt { display: inline; }
html.lang-pt span.en { display: none; }
span.pt { display: none; }

/* =========================================================
   NAVIGATION
   ========================================================= */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(29, 45, 29, 0.97);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  border-bottom: 2px solid var(--gold);
  transition: background var(--transition);
}
.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--cream);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.2;
}
.nav-logo span {
  display: block;
  font-size: 0.7rem;
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links a {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  padding: 0.4rem 0.75rem;
  border-radius: 3px;
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); background: rgba(196,163,90,0.1); }
.nav-links a.shop-link {
  background: var(--gold);
  color: var(--dark);
  padding: 0.4rem 1rem;
  border-radius: 3px;
}
.nav-links a.shop-link:hover { background: var(--gold-light); }

/* Language toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0;
  margin-left: 1rem;
  border: 1px solid var(--gold);
  border-radius: 3px;
  overflow: hidden;
}
.lang-toggle button {
  background: none;
  border: none;
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.6rem;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.lang-toggle button.active,
.lang-toggle button:hover { background: var(--gold); color: var(--dark); }
.partner-link {
  margin-left: 0.75rem;
  width: 2.25rem;
  height: 2.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: var(--cream);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  flex-shrink: 0;
}
.partner-link:hover {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}
.partner-link svg {
  width: 1rem;
  height: 1rem;
  display: block;
  fill: currentColor;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--cream);
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.nav-drawer {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--dark);
  padding: 1.5rem 2rem 2rem;
  z-index: 999;
  border-bottom: 2px solid var(--gold);
  flex-direction: column;
  gap: 0.25rem;
}
.nav-drawer.open { display: flex; }
.nav-drawer a {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(196,163,90,0.2);
}
.nav-drawer a:hover { color: var(--gold); }
.nav-drawer .drawer-lang {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}
.nav-drawer .drawer-partner {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1rem;
  padding: 0.7rem 1rem;
  border: 1px solid var(--gold);
  border-radius: 999px;
  width: fit-content;
  border-bottom: 1px solid var(--gold);
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: 0.9rem;
}
.nav-drawer .drawer-partner svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
  flex-shrink: 0;
}
.nav-drawer .drawer-partner:hover {
  background: var(--gold);
  color: var(--dark);
}
.nav-drawer .drawer-lang button {
  background: none;
  border: 1px solid var(--gold);
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.4rem 1rem;
  cursor: pointer;
  border-radius: 3px;
}
.nav-drawer .drawer-lang button.active { background: var(--gold); color: var(--dark); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  height: calc(100vh - var(--nav-h));
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 5rem;
  background: var(--green) center bottom / cover no-repeat;
  margin-top: var(--nav-h);
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,20,10,0.85) 0%, rgba(10,20,10,0.25) 60%, transparent 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 0 2rem;
  max-width: 900px;
}
.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}
.hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  max-width: 560px;
  margin-bottom: 2rem;
  font-weight: 300;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Page hero (inner pages) */
.page-hero {
  position: relative;
  height: 70vh;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 3rem;
  background: var(--green) center bottom / cover no-repeat;
  margin-top: var(--nav-h);
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,20,10,0.8) 0%, rgba(10,20,10,0.2) 70%, transparent 100%);
}
.page-hero-content {
  position: relative;
  z-index: 1;
  padding: 0 2rem;
  max-width: 800px;
}
.page-hero-content .eyebrow {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.page-hero-content h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
}
.page-hero-content p {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  margin-top: 0.75rem;
  font-weight: 300;
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: 3px;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-gold {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }
.btn-green {
  background: var(--green);
  color: var(--cream);
  border-color: var(--green);
}
.btn-green:hover { background: var(--green-light); border-color: var(--green-light); }
.btn-outline-green {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn-outline-green:hover { background: var(--green); color: var(--cream); }

/* =========================================================
   SECTIONS & LAYOUT
   ========================================================= */
section { padding: 5rem 2rem; }
.container { max-width: 1100px; margin: 0 auto; }
.container-narrow { max-width: 780px; margin: 0 auto; }

.section-label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--green);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}
.section-title.light { color: var(--cream); }
.section-intro {
  font-size: 1.05rem;
  color: var(--stone);
  max-width: 640px;
  margin-bottom: 3rem;
  font-weight: 300;
  line-height: 1.8;
}

/* =========================================================
   HOME — CARDS GRID
   ========================================================= */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  background: var(--green);
  aspect-ratio: 4/3;
  display: flex;
  align-items: flex-end;
  transition: transform var(--transition);
}
.card:hover { transform: translateY(-4px); }
.card-img {
  position: absolute;
  inset: 0;
  background: var(--green-light) center center / cover no-repeat;
  transition: transform 0.5s ease;
}
.card:hover .card-img { transform: scale(1.04); }
.card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,20,10,0.85) 0%, transparent 60%);
}
.card-body {
  position: relative;
  z-index: 1;
  padding: 1.25rem;
}
.card-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.25rem;
}
.card-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
}
.card-arrow {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  transition: transform var(--transition);
}
.card:hover .card-arrow { transform: translateX(4px); }

/* =========================================================
   QUOTE / PULL QUOTE
   ========================================================= */
.pull-quote {
  background: var(--green);
  color: var(--cream);
  padding: 5rem 2rem;
  text-align: center;
}
.pull-quote blockquote {
  font-family: var(--font-italic);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-style: italic;
  font-weight: 400;
  color: var(--cream);
  max-width: 820px;
  margin: 0 auto 1rem;
  line-height: 1.6;
}
.pull-quote cite {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

/* =========================================================
   TWO-COLUMN SPLIT
   ========================================================= */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
.split-image {
  aspect-ratio: 3/4;
  background: var(--green-light) center center / cover no-repeat;
  border-radius: 4px;
}
.split-image.landscape { aspect-ratio: 4/3; }

/* =========================================================
   HIGHLIGHT BOX (chapel)
   ========================================================= */
.highlight-box {
  background: var(--cream-dark);
  border-left: 4px solid var(--gold);
  padding: 1.75rem 2rem;
  border-radius: 0 4px 4px 0;
  margin: 2rem 0;
}
.highlight-box p { font-size: 1rem; color: var(--dark); line-height: 1.8; }
.highlight-box.fern { border-left-color: var(--fern); background: #edf4ef; }

/* Gothic arch clip on chapel images */
.chapel-arch {
  border-radius: 50% 50% 0 0 / 18% 18% 0 0;
}

/* =========================================================
   STATS ROW
   ========================================================= */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
  margin: 3rem 0;
}
.stat {
  text-align: center;
  padding: 2rem 1rem;
  background: var(--white);
  border-radius: 4px;
  border-top: 3px solid var(--gold);
}
.stat-number {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone);
}

/* =========================================================
   IMAGE GALLERY GRID
   ========================================================= */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gallery-item {
  aspect-ratio: 1;
  background: var(--green-light) center center / cover no-repeat;
  border-radius: 4px;
  overflow: hidden;
  transition: transform var(--transition);
}
.gallery-item:hover { transform: scale(1.02); }
.gallery-item.tall { grid-row: span 2; aspect-ratio: unset; }

/* =========================================================
   VISIT PAGE — ADMISSION TABLE
   ========================================================= */
.admission-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: 0.95rem;
}
.admission-table th {
  background: var(--green);
  color: var(--cream);
  padding: 0.85rem 1.25rem;
  text-align: left;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.admission-table td {
  padding: 0.85rem 1.25rem;
  border-bottom: 1px solid var(--cream-dark);
  color: var(--dark);
}
.admission-table tr:last-child td { border-bottom: none; }
.admission-table tr:nth-child(even) td { background: rgba(245,237,214,0.5); }

/* Hours grid */
.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
}
.hours-card {
  background: var(--white);
  border-radius: 4px;
  padding: 1.75rem;
  border-top: 3px solid var(--gold);
}
.hours-card h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--green);
  margin-bottom: 0.5rem;
}
.hours-card .time {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  font-family: var(--font-serif);
}
.hours-card .months {
  font-size: 0.82rem;
  color: var(--stone);
  margin-top: 0.25rem;
}

/* Map */
.map-embed {
  width: 100%;
  height: 420px;
  border-radius: 4px;
  overflow: hidden;
  border: none;
  margin-top: 1.5rem;
}

/* =========================================================
   SHOP PAGE — PRODUCT CARDS
   ========================================================= */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.product-card {
  background: var(--white);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  transition: box-shadow var(--transition), transform var(--transition);
}
.product-card:hover { box-shadow: 0 6px 30px rgba(0,0,0,0.12); transform: translateY(-3px); }
.product-image {
  aspect-ratio: 16/9;
  background: var(--green) center center / cover no-repeat;
}
.product-body { padding: 2rem; }
.product-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.product-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--green);
  margin-bottom: 0.75rem;
}
.product-desc {
  font-size: 0.92rem;
  color: var(--stone);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}
.product-includes {
  margin: 1rem 0 1.5rem;
  padding: 0;
}
.product-includes li {
  font-size: 0.88rem;
  color: var(--dark);
  padding: 0.3rem 0;
  padding-left: 1.25rem;
  position: relative;
}
.product-includes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--cream-dark);
  padding-top: 1.25rem;
  margin-top: 1.25rem;
}
.product-price {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--green);
}
.product-price small {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--stone);
  font-weight: 400;
}

/* =========================================================
   CONTACT FORM
   ========================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--green);
  margin: 1.5rem 0 0.5rem;
}
.contact-info h3:first-of-type { margin-top: 0; }
.contact-info p, .contact-info a {
  font-size: 0.95rem;
  color: var(--stone);
  line-height: 1.8;
}
.contact-info a:hover { color: var(--green); }
.social-links { display: flex; gap: 1rem; margin-top: 0.5rem; }
.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  border: 1px solid var(--green);
  padding: 0.4rem 0.9rem;
  border-radius: 3px;
  transition: var(--transition);
}
.social-links a:hover { background: var(--green); color: var(--cream); }

.contact-form { display: flex; flex-direction: column; gap: 1.1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
}
.form-group input,
.form-group textarea,
.form-group select {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: 3px;
  padding: 0.75rem 1rem;
  transition: border-color var(--transition);
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
}
.form-group textarea { min-height: 140px; resize: vertical; }

/* =========================================================
   FOOTER
   ========================================================= */
footer {
  background: var(--dark);
  color: var(--cream);
  padding: 4rem 2rem 2rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .logo-text {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--cream);
  margin-bottom: 0.25rem;
}
.footer-brand .logo-sub {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer-brand p {
  font-size: 0.88rem;
  color: rgba(245,237,214,0.6);
  line-height: 1.8;
  max-width: 300px;
}
footer h4 {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
footer ul { display: flex; flex-direction: column; gap: 0.5rem; }
footer ul a {
  font-size: 0.88rem;
  color: rgba(245,237,214,0.7);
  transition: color var(--transition);
}
footer ul a:hover { color: var(--cream); }
.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid rgba(196,163,90,0.2);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: rgba(245,237,214,0.4);
}
.footer-bottom a { color: rgba(196,163,90,0.7); }
.footer-bottom a:hover { color: var(--gold); }
/* =========================================================
   UTILITY
   ========================================================= */
.bg-green { background: var(--green); }
.bg-cream-dark {
  background-color: var(--cream-dark);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 80 120' fill='none' stroke='%234E7A5A' stroke-width='0.8' opacity='0.12'%3E%3Cpath d='M40 110 Q40 60 40 10'/%3E%3Cpath d='M40 90 Q25 75 15 60'/%3E%3Cpath d='M40 80 Q55 65 65 50'/%3E%3Cpath d='M40 70 Q27 58 20 44'/%3E%3Cpath d='M40 60 Q53 48 60 35'/%3E%3Cpath d='M40 50 Q30 40 25 28'/%3E%3Cpath d='M40 42 Q50 32 54 20'/%3E%3C/svg%3E");
  background-size: 80px 120px;
}
.bg-white { background: var(--white); }
.text-center { text-align: center; }
.text-center .section-intro { margin-left: auto; margin-right: auto; }
.divider {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 1.25rem 0;
}
.divider::before,
.divider::after {
  content: '';
  flex: 0 0 48px;
  height: 2px;
  background: var(--gold);
}
.divider-icon {
  display: inline-block;
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C4A35A' stroke-width='1.4'%3E%3Ccircle cx='12' cy='12' r='2'/%3E%3Cellipse cx='12' cy='6' rx='2' ry='4'/%3E%3Cellipse cx='12' cy='18' rx='2' ry='4'/%3E%3Cellipse cx='6' cy='12' rx='4' ry='2'/%3E%3Cellipse cx='18' cy='12' rx='4' ry='2'/%3E%3Cellipse cx='7.8' cy='7.8' rx='2' ry='4' transform='rotate(45 7.8 7.8)'/%3E%3Cellipse cx='16.2' cy='16.2' rx='2' ry='4' transform='rotate(45 16.2 16.2)'/%3E%3Cellipse cx='16.2' cy='7.8' rx='2' ry='4' transform='rotate(-45 16.2 7.8)'/%3E%3Cellipse cx='7.8' cy='16.2' rx='2' ry='4' transform='rotate(-45 7.8 16.2)'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}
.divider.center { margin: 1.25rem auto; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

/* Photo credit captions */
.photo-credit {
  font-size: 0.72rem;
  color: var(--stone);
  text-align: right;
  margin-top: 0.35rem;
  font-style: italic;
  opacity: 0.8;
}

/* Image placeholder (until real images added) */
.img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  background: var(--green);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 2.5rem; }
  .split.reverse { direction: ltr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.tall { grid-row: span 1; aspect-ratio: 1; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hours-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  .nav-links, .lang-toggle { display: none; }
  .hamburger { display: flex; }
  section { padding: 3.5rem 1.25rem; }
  .hero {
    height: calc(100vh - var(--nav-h));
    min-height: 380px;
    padding-bottom: 3rem;
    background-position: 10% center;
  }
  .page-hero {
    height: 55vh;
    min-height: 320px;
    background-position: 10% center;
  }
  .cards-grid { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .footer-partner { text-align: center; }
  .products-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .cards-grid { grid-template-columns: 1fr; }
  .hero { padding-bottom: 1.5rem; }
  .hero h1 { font-size: 1.75rem; margin-bottom: 0.75rem; }
  .hero p { font-size: 0.9rem; margin-bottom: 1.25rem; }
  .hero-actions { flex-direction: column; }
  .stats-row { grid-template-columns: 1fr 1fr; }
}
