/* ===== Unic·a — sistema visual ===== */
:root {
  --green: #4f6049;
  --green-deep: #2f3a2b;
  --sage: #bcc4a5;
  --sage-soft: #d8dec5;
  --paper: #f6f4ee;
  --paper-warm: #efece2;
  --ink: #2a2e26;
  --ink-soft: #5a5e54;
  --rule: rgba(42, 46, 38, 0.14);
  --rule-strong: rgba(42, 46, 38, 0.28);
  --shadow-soft: 0 1px 2px rgba(42,46,38,0.04), 0 8px 24px rgba(42,46,38,0.06);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Helvetica Neue", Helvetica, "Inter", system-ui, -apple-system, sans-serif;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: 16px;
  line-height: 1.55;
}

body { overflow-x: hidden; }

/* ===== Type system ===== */
.serif { font-family: "Cormorant Garamond", "EB Garamond", Georgia, serif; font-style: italic; font-weight: 400; }
.label {
  font-family: "Helvetica Neue", Helvetica, sans-serif;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--ink-soft);
}
.label--green { color: var(--green); }
.mono { font-family: "JetBrains Mono", "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace; }
h1, h2, h3, h4 { font-weight: 300; margin: 0; letter-spacing: -0.01em; }
p { margin: 0; text-wrap: pretty; }
a { color: inherit; text-decoration: none; }

/* ===== Shell layout ===== */
.app-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 48px;
}
@media (max-width: 720px) { .container { padding: 0 24px; } }

/* Mobile overflow safety: long words / titles wrap instead of pushing past margins */
@media (max-width: 560px) {
  h1, h2, h3, .section-title { overflow-wrap: break-word; word-break: break-word; }
  .container { overflow-x: hidden; }
}

/* Cómo llegar — 4 transport blocks: 2x2 grid on tablet and mobile */
@media (max-width: 880px) {
  .arrive-grid { grid-template-columns: 1fr 1fr; }
  .arrive-cell { min-height: 0; padding: 28px 24px; }
  .getthere-mini { grid-template-columns: 1fr; gap: 18px; }
}
.arrive-desc-short { display: none; }
@media (max-width: 768px) {
  .arrive-grid {
    display: flex;
    flex-direction: column;
    width: 100%;
    overflow: visible;
    gap: 32px;
    background: transparent;
    border-top: none;
    border-bottom: none;
  }
  .arrive-cell {
    min-width: 0;
    width: 100%;
    padding: 0;
    min-height: 0;
    gap: 8px;
    background: transparent;
    border: none;
    border-radius: 0;
  }
  .arrive-cell h3 { font-size: 28px; }
  /* Plain text on mobile: keep full description, no card/grid styling */
  .arrive-desc { display: block; }
  .arrive-desc-short { display: none; }
}
@media (max-width: 520px) {
  .arrive-cell { padding: 22px 18px; }
}

/* ===== Nav ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 244, 238, 0.86);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--rule);
  transition: transform 320ms cubic-bezier(0.4, 0, 0.2, 1);
}
.nav--hidden { transform: translateY(-100%); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 32px;
}
.nav-logo {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 26px;
  letter-spacing: 0.16em;
  color: var(--green);
  font-style: normal;
  font-weight: 400;
  cursor: pointer;
  user-select: none;
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.nav-logo .dot { color: var(--sage); font-size: 22px; transform: translateY(-2px); }
.nav-logo .sub {
  font-family: "Helvetica Neue", Helvetica, sans-serif;
  font-size: 9px;
  letter-spacing: 0.32em;
  color: var(--ink-soft);
  text-transform: uppercase;
  margin-left: 12px;
}
.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav-link {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  cursor: pointer;
  padding: 6px 0;
  position: relative;
  transition: color 160ms ease;
}
.nav-link:hover { color: var(--green); }
.nav-link.is-active { color: var(--green); }
.nav-link.is-active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -2px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--sage);
  transform: translateX(-50%);
}
.nav-cta {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--green);
  color: var(--paper);
  padding: 12px 22px;
  border-radius: 999px;
  cursor: pointer;
  border: none;
  font-family: inherit;
  font-weight: 400;
  transition: background 160ms ease, transform 160ms ease;
}
.nav-cta:hover { background: var(--green-deep); transform: translateY(-1px); }

.nav-burger { display: none; }
@media (max-width: 880px) {
  .nav-inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 24px;
    padding: 16px 0;
  }
  .nav-inner > div:first-child { flex-basis: 100%; display: flex; justify-content: center; }
  .nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 22px;
    order: 2;
    flex-basis: 100%;
  }
  .nav-links .nav-link { font-size: 11px; letter-spacing: 0.18em; padding: 2px 0; }
  .nav-cta-group {
    order: 3;
    flex-wrap: wrap;
    justify-content: center;
  }
  .nav-cta { padding: 10px 16px; font-size: 11px; }
}
@media (max-width: 380px) {
  .nav-cta { padding: 9px 13px; font-size: 10px; letter-spacing: 0.12em; }
  .nav-cta-group { gap: 6px; }
}

.brand-logo {
  display: block;
  height: 52px;
  width: auto;
}
.footer-brand .brand-logo {
  height: 64px;
  margin-bottom: 18px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid transparent;
  font-family: inherit;
  font-weight: 400;
  transition: all 180ms ease;
  background: var(--green);
  color: var(--paper);
}
.btn:hover { background: var(--green-deep); transform: translateY(-1px); }
.btn--ghost {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn--ghost:hover { background: var(--green); color: var(--paper); }
.btn--sage {
  background: var(--sage);
  color: var(--green-deep);
}
.btn--sage:hover { background: var(--sage-soft); color: var(--green-deep); }
.btn--wide { padding: 18px 32px; }

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 960px) { .hero-grid { grid-template-columns: 1fr; gap: 48px; } }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
}
.hero-eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--sage);
}

.hero-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: var(--green-deep);
  font-weight: 400;
  margin-bottom: 28px;
}
.hero-title em {
  font-style: italic;
  color: var(--green);
  display: block;
}

.hero-lede {
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 460px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.hero-meta {
  margin-top: 56px;
  display: flex;
  gap: 56px;
  flex-wrap: wrap;
}
.hero-meta-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hero-meta-item .label { color: var(--ink-soft); }
.hero-meta-item .value {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: 22px;
  color: var(--green-deep);
}

/* Hero visual card */
.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
}
.hero-visual .frame-tag {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 3;
  background: rgba(246, 244, 238, 0.92);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--green-deep);
}
.hero-visual .leaf-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

/* ===== Real photo ===== */
.photo {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: var(--paper-warm);
}
.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.photo .photo-tag {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(246, 244, 238, 0.92);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--green-deep);
  z-index: 2;
}

/* ===== Placeholder image ===== */
.ph {
  position: relative;
  width: 100%;
  height: 100%;
  background:
    repeating-linear-gradient(135deg,
      rgba(79, 96, 73, 0.10) 0,
      rgba(79, 96, 73, 0.10) 1px,
      transparent 1px,
      transparent 14px),
    linear-gradient(180deg, var(--sage-soft), var(--sage));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-deep);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  padding: 24px;
  overflow: hidden;
}
.ph--deep {
  background:
    repeating-linear-gradient(135deg,
      rgba(246, 244, 238, 0.12) 0,
      rgba(246, 244, 238, 0.12) 1px,
      transparent 1px,
      transparent 14px),
    linear-gradient(180deg, var(--green), var(--green-deep));
  color: var(--paper);
}
.ph--paper {
  background:
    repeating-linear-gradient(135deg,
      rgba(79, 96, 73, 0.10) 0,
      rgba(79, 96, 73, 0.10) 1px,
      transparent 1px,
      transparent 14px),
    var(--paper-warm);
  color: var(--green);
}
.ph .ph-label {
  background: rgba(246, 244, 238, 0.85);
  padding: 8px 14px;
  border-radius: 4px;
  color: var(--green-deep);
}
.ph--deep .ph-label { background: rgba(79, 96, 73, 0.78); color: var(--paper); }

/* ===== Generic section ===== */
.section {
  padding: 100px 0;
  position: relative;
}
.section--tight { padding: 64px 0; }
.section--paper { background: var(--paper-warm); }
@media (max-width: 720px) {
  .section { padding: 56px 0; }
  .section--tight { padding: 40px 0; }
  .team-story-section { padding-top: 44px; padding-bottom: 56px; }
}
.section--green { background: var(--green); color: var(--paper); }
.section--green .label { color: rgba(246,244,238,0.7); }
.section--green h2 { color: var(--paper); }

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 48px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.section-head-left { max-width: 720px; }
.section-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(36px, 4.5vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  margin-top: 16px;
  color: var(--green-deep);
}
.section-title em { font-style: italic; color: var(--green); }
.section--green .section-title { color: var(--paper); }
.section--green .section-title em { color: var(--sage); }
.section-sub {
  margin-top: 18px;
  max-width: 540px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.65;
}
.section--green .section-sub { color: rgba(246,244,238,0.78); }

/* ===== Services grid ===== */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
@media (max-width: 880px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .svc-grid { grid-template-columns: 1fr; } }
.svc-card {
  background: var(--paper);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 240px;
  position: relative;
  transition: background 220ms ease;
  cursor: default;
}
.svc-card:hover { background: var(--paper-warm); }
.svc-card .num {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--sage);
}
.svc-card .name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 32px;
  line-height: 1.05;
  color: var(--green-deep);
}
.svc-card .name em { font-style: italic; color: var(--green); }
.svc-card .desc { font-size: 14px; color: var(--ink-soft); line-height: 1.6; }
.svc-card .price {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 18px;
  border-top: 1px solid var(--rule);
}
.svc-card .price .from { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-soft); }
.svc-card .price .val { font-family: "Cormorant Garamond", serif; font-size: 22px; color: var(--green-deep); font-style: italic; }

/* ===== Service category hover cards ===== */
.svc-cats {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.svc-cat {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 4px;
  padding: 56px 56px 48px;
  overflow: hidden;
  isolation: isolate;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 56px;
  align-items: start;
  transition: transform 280ms ease, box-shadow 280ms ease, border-color 280ms ease;
  cursor: default;
}
@media (max-width: 880px) { .svc-cat { grid-template-columns: 1fr; padding: 36px 28px; gap: 28px; } }
.svc-cat::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--svc-bg, none);
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 380ms ease, transform 1.6s ease;
  transform: scale(1.05);
  z-index: -2;
}
.svc-cat::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(47,58,43,0.42) 0%, rgba(47,58,43,0.85) 100%);
  opacity: 0;
  transition: opacity 380ms ease;
  z-index: -1;
}
.svc-cat:hover {
  transform: translateY(-3px);
  border-color: transparent;
  box-shadow: 0 22px 60px rgba(47,58,43,0.28);
}
.svc-cat:hover::before { opacity: 1; transform: scale(1); }
.svc-cat:hover::after { opacity: 1; }
.svc-cat:hover .svc-cat-num,
.svc-cat:hover .svc-cat-title,
.svc-cat:hover .svc-cat-lede,
.svc-cat:hover .svc-cat-sub h4,
.svc-cat:hover .svc-cat-sub li { color: var(--paper); }
.svc-cat:hover .svc-cat-title em,
.svc-cat:hover .svc-cat-sub h4 { color: var(--sage); }
.svc-cat:hover .svc-cat-sub li::before { background: var(--sage); }
.svc-cat:hover .svc-cat-hint { opacity: 0; transform: translateY(6px); }
.svc-cat--no-photo:hover { box-shadow: 0 8px 24px rgba(47,58,43,0.10); transform: none; }
.svc-cat--no-photo:hover::before,
.svc-cat--no-photo:hover::after { opacity: 0; }
.svc-cat--no-photo:hover .svc-cat-num,
.svc-cat--no-photo:hover .svc-cat-title,
.svc-cat--no-photo:hover .svc-cat-lede,
.svc-cat--no-photo:hover .svc-cat-sub h4,
.svc-cat--no-photo:hover .svc-cat-sub li { color: inherit; }
.svc-cat--no-photo:hover .svc-cat-title em,
.svc-cat--no-photo:hover .svc-cat-sub h4 { color: var(--green); }

.svc-cat-num {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--sage);
  transition: color 320ms ease;
}
.svc-cat-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(38px, 4vw, 52px);
  line-height: 1;
  color: var(--green-deep);
  letter-spacing: -0.01em;
  margin-top: 14px;
  transition: color 320ms ease;
}
.svc-cat-title em { font-style: italic; color: var(--green); transition: color 320ms ease; }
.svc-cat-lede {
  margin-top: 18px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 320px;
  transition: color 320ms ease;
}
.svc-cat-hint {
  margin-top: 24px;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: opacity 280ms ease, transform 280ms ease;
}
.svc-cat-subs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px 48px;
}
@media (max-width: 560px) { .svc-cat-subs { grid-template-columns: 1fr; gap: 28px; } }
.svc-cat-sub h4 {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 22px;
  color: var(--green);
  margin-bottom: 14px;
  transition: color 320ms ease;
}
.svc-cat-sub ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.svc-cat-sub li {
  font-size: 14px;
  color: var(--ink);
  display: flex;
  align-items: baseline;
  gap: 12px;
  line-height: 1.5;
  transition: color 320ms ease;
}
.svc-cat-sub li::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--green);
  flex: 0 0 4px;
  transform: translateY(-2px);
  transition: background 320ms ease;
}



/* ===== Team grupal ===== */
.team-hero {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 21/9;
  width: 100%;
}
@media (max-width: 720px) { .team-hero { aspect-ratio: 16/10; } }
.team-hero img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.team-roster {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  margin-top: 48px;
}
@media (max-width: 880px) { .team-roster { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .team-roster { grid-template-columns: repeat(2, 1fr); } }
.roster-cell {
  padding: 28px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-right: 1px solid var(--rule);
}
.roster-cell:last-child { border-right: none; }
@media (max-width: 880px) {
  .roster-cell:nth-child(3n) { border-right: none; }
  .roster-cell:nth-child(n+4) { border-top: 1px solid var(--rule); }
}
@media (max-width: 480px) {
  .roster-cell:nth-child(3n) { border-right: 1px solid var(--rule); }
  .roster-cell:nth-child(2n) { border-right: none; }
  .roster-cell:nth-child(n+3) { border-top: 1px solid var(--rule); }
}

/* Nuestra historia */
.team-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.team-story-p {
  margin-top: 24px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.75;
  max-width: 520px;
}
.team-story-p + .team-story-p { margin-top: 16px; }
.team-story-img {
  aspect-ratio: 4/5;
  border-radius: 4px;
  overflow: hidden;
}
@media (max-width: 880px) {
  .team-story { grid-template-columns: 1fr; gap: 36px; }
  .team-story-p { max-width: none; }
  .team-story-img { aspect-ratio: 16/11; max-width: 480px; }
}
.roster-num {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--sage);
}
.roster-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
  color: var(--green-deep);
  line-height: 1.05;
}
.roster-name em { font-style: italic; color: var(--green); }
.roster-role {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 4px;
}
.roster-tag {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: var(--sage);
  color: var(--green-deep);
  padding: 3px 8px;
  border-radius: 999px;
  margin-top: 8px;
  display: inline-block;
  width: fit-content;
}

/* ===== Phone CTA pill ===== */
.phone-pill {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 22px 14px 18px;
  border-radius: 999px;
  background: var(--paper);
  border: 1px solid var(--rule-strong);
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 22px;
  color: var(--green-deep);
  transition: all 200ms ease;
  cursor: pointer;
  text-decoration: none;
}
.phone-pill:hover { background: var(--green); color: var(--paper); border-color: var(--green); }
.phone-pill .phone-pill-label {
  font-family: "Helvetica Neue", Helvetica, sans-serif;
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-right: 6px;
}
.phone-pill:hover .phone-pill-label { color: rgba(246,244,238,0.78); }

/* ===== Bodas split ===== */
.bodas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--paper-warm);
  align-items: stretch;
}
@media (max-width: 880px) { .bodas { grid-template-columns: 1fr; } }
.bodas-text { padding: 96px 64px; }
.bodas-img { min-height: 520px; position: relative; }
@media (max-width: 880px) {
  .bodas-text { padding: 56px 24px; }
  .bodas-img { min-height: 360px; }
}

/* ===== Team grid ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 880px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .team-grid { grid-template-columns: 1fr; } }
.team-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.team-photo {
  aspect-ratio: 3/4;
  background: var(--paper-warm);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}
.team-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  color: var(--green-deep);
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.team-name em { font-style: italic; color: var(--green); }
.team-role { font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-soft); }
.team-bio { font-size: 14px; line-height: 1.65; color: var(--ink-soft); }
.team-founder-tag {
  display: inline-block;
  font-size: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  background: var(--sage);
  color: var(--green-deep);
  padding: 4px 10px;
  border-radius: 999px;
  margin-left: 6px;
}

/* ===== Gallery ===== */
.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  grid-auto-rows: 120px;
}
@media (max-width: 720px) {
  .gallery { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 100px; }
}
.gall-item { border-radius: 4px; overflow: hidden; position: relative; }
.gall-1 { grid-column: span 5; grid-row: span 3; }
.gall-2 { grid-column: span 4; grid-row: span 2; }
.gall-3 { grid-column: span 3; grid-row: span 2; }
.gall-4 { grid-column: span 4; grid-row: span 2; }
.gall-5 { grid-column: span 3; grid-row: span 2; }
@media (max-width: 720px) {
  .gall-1 { grid-column: span 6; grid-row: span 2; }
  .gall-2 { grid-column: span 3; grid-row: span 2; }
  .gall-3 { grid-column: span 3; grid-row: span 2; }
  .gall-4 { grid-column: span 4; grid-row: span 2; }
  .gall-5 { grid-column: span 2; grid-row: span 2; }
}

/* ===== Testimonials ===== */
.t-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1080px) { .t-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .t-grid { grid-template-columns: 1fr; } }
.t-card {
  padding: 32px 26px;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 260px;
}
.t-card .stars { color: var(--green); font-size: 12px; letter-spacing: 4px; }
.t-card .quote {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 17px;
  line-height: 1.45;
  color: var(--green-deep);
  flex: 1;
}
.t-card .author { display: flex; flex-direction: column; gap: 2px; }
.t-card .author .name { font-size: 13px; color: var(--ink); }
.t-card .author .place { font-size: 11px; color: var(--ink-soft); letter-spacing: 0.12em; text-transform: uppercase; }

/* ===== Booking ===== */
.book-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}
@media (max-width: 880px) { .book-options { grid-template-columns: 1fr; } }
.book-opt {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 4px;
  padding: 28px;
  cursor: pointer;
  transition: all 200ms ease;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 200px;
  position: relative;
  font-family: inherit;
  font-size: inherit;
  text-align: left;
  color: inherit;
}
.book-opt:hover { border-color: var(--green); transform: translateY(-2px); }
.book-opt.is-active { background: var(--green); color: var(--paper); border-color: var(--green); }
.book-opt.is-active .label { color: rgba(246,244,238,0.7); }
.book-opt.is-active .opt-name { color: var(--paper); }
.book-opt.is-active .opt-desc { color: rgba(246,244,238,0.78); }
.book-opt .opt-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  color: var(--green-deep);
}
.book-opt .opt-name em { font-style: italic; color: var(--green); }
.book-opt.is-active .opt-name em { color: var(--sage); }
.book-opt .opt-desc { font-size: 13px; color: var(--ink-soft); line-height: 1.6; }
.book-opt .opt-icon {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  color: var(--green);
}
.book-opt.is-active .opt-icon { color: var(--sage); }

.book-panel {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 4px;
  padding: 48px;
  min-height: 360px;
}
@media (max-width: 720px) { .book-panel { padding: 28px; } }

/* form */
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
@media (max-width: 720px) { .form-grid { grid-template-columns: 1fr; } }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-soft); }
.form-field input,
.form-field select,
.form-field textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--rule-strong);
  padding: 10px 0;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  outline: none;
  transition: border-color 160ms ease;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--green); }
.form-field textarea { resize: vertical; min-height: 80px; }

.chip-row { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  border: 1px solid var(--rule-strong);
  background: transparent;
  padding: 8px 14px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 12px;
  letter-spacing: 0.08em;
  cursor: pointer;
  color: var(--ink);
  transition: all 160ms ease;
}
.chip:hover { border-color: var(--green); }
.chip.is-on { background: var(--green); color: var(--paper); border-color: var(--green); }

.time-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(78px, 1fr));
  gap: 8px;
  max-width: 540px;
}
.time-slot {
  padding: 10px 0;
  text-align: center;
  border: 1px solid var(--rule-strong);
  border-radius: 4px;
  cursor: pointer;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  background: transparent;
  color: var(--ink);
  transition: all 160ms ease;
}
.time-slot:hover { border-color: var(--green); }
.time-slot.is-on { background: var(--green); color: var(--paper); border-color: var(--green); }
.time-slot.is-off { opacity: 0.32; cursor: not-allowed; }

/* ===== Contact ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info { display: flex; flex-direction: column; gap: 32px; }
.contact-block { display: flex; flex-direction: column; gap: 8px; }
.contact-block .v {
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
  color: var(--green-deep);
}
.contact-block .v em { font-style: italic; color: var(--green); }
.hours-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dashed var(--rule);
  font-size: 14px;
}
.hours-row:last-child { border-bottom: none; }
.hours-row .day { color: var(--ink); }
.hours-row .hrs { color: var(--ink-soft); font-family: "JetBrains Mono", monospace; font-size: 13px; }
.hours-row.is-today .day { color: var(--green); font-weight: 500; }
.hours-row.is-today .hrs { color: var(--green); }
.hours-row.is-closed .hrs { color: var(--ink-soft); opacity: 0.7; }

.map-placeholder {
  width: 100%;
  aspect-ratio: 1/1;
  background: var(--paper-warm);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

/* ===== Footer ===== */
.footer {
  background: var(--green-deep);
  color: rgba(246,244,238,0.8);
  padding: 72px 0 32px;
  margin-top: auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
.footer h4 { font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--sage); margin-bottom: 16px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; font-size: 13px; }
.footer ul li { transition: color 160ms ease; }
.footer ul li a { color: inherit; text-decoration: none; cursor: pointer; }
.footer ul li:hover,
.footer ul li a:hover { color: var(--sage); }
.footer-brand .logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  letter-spacing: 0.16em;
  color: var(--paper);
  margin-bottom: 12px;
}
.footer-brand .logo .dot { color: var(--sage); }
.footer-brand p { font-size: 13px; color: rgba(246,244,238,0.6); line-height: 1.6; max-width: 280px; }
.footer-base {
  padding-top: 24px;
  border-top: 1px solid rgba(246,244,238,0.12);
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: rgba(246,244,238,0.5);
  text-transform: uppercase;
  flex-wrap: wrap;
  gap: 12px;
}

/* ===== Chatbot ===== */
.chatbot-bubble {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 80;
  background: var(--green);
  color: var(--paper);
  border: none;
  border-radius: 999px;
  padding: 16px 22px 16px 18px;
  font-family: inherit;
  font-size: 13px;
  letter-spacing: 0.06em;
  cursor: pointer;
  box-shadow: 0 12px 40px rgba(47, 58, 43, 0.32);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: transform 200ms ease, background 200ms ease;
}
.chatbot-bubble:hover { transform: translateY(-2px); background: var(--green-deep); }
.chatbot-bubble .pulse {
  width: 8px; height: 8px; border-radius: 50%; background: var(--sage);
  box-shadow: 0 0 0 0 rgba(188,196,165,0.7);
  animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(188,196,165,0.7); }
  70% { box-shadow: 0 0 0 12px rgba(188,196,165,0); }
  100% { box-shadow: 0 0 0 0 rgba(188,196,165,0); }
}

.chatbot-panel {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 81;
  width: 380px;
  max-width: calc(100vw - 32px);
  height: 580px;
  max-height: calc(100vh - 56px);
  background: var(--paper);
  border-radius: 16px;
  box-shadow: 0 24px 80px rgba(47, 58, 43, 0.28), 0 2px 6px rgba(47,58,43,0.08);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--rule);
}
.chatbot-head {
  background: var(--green);
  color: var(--paper);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.chatbot-head .avatar {
  width: 40px; height: 40px;
  background: var(--sage);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-deep);
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-style: italic;
}
.chatbot-head .who { display: flex; flex-direction: column; gap: 2px; }
.chatbot-head .who .name { font-size: 14px; }
.chatbot-head .who .status { font-size: 11px; opacity: 0.7; letter-spacing: 0.08em; display: flex; align-items: center; gap: 6px; }
.chatbot-head .who .status::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: #8fd49a; display: inline-block;
}
.chatbot-close {
  margin-left: auto;
  background: transparent;
  border: none;
  color: var(--paper);
  cursor: pointer;
  opacity: 0.8;
  padding: 4px;
}
.chatbot-close:hover { opacity: 1; }

.chatbot-msgs {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--paper);
}
.msg { display: flex; gap: 10px; max-width: 88%; }
.msg.bot { align-self: flex-start; }
.msg.user { align-self: flex-end; flex-direction: row-reverse; }
.msg-bubble {
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.5;
}
.msg.bot .msg-bubble {
  background: var(--paper-warm);
  border-bottom-left-radius: 4px;
  color: var(--ink);
}
.msg.user .msg-bubble {
  background: var(--green);
  color: var(--paper);
  border-bottom-right-radius: 4px;
}
.msg-typing {
  display: inline-flex;
  gap: 4px;
  padding: 14px 16px;
}
.msg-typing span {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--ink-soft);
  opacity: 0.4;
  animation: typing 1.2s infinite;
}
.msg-typing span:nth-child(2) { animation-delay: 0.15s; }
.msg-typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes typing {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-4px); opacity: 1; }
}

.chatbot-suggestions {
  padding: 0 20px 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.chatbot-suggest {
  background: transparent;
  border: 1px solid var(--rule-strong);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  cursor: pointer;
  color: var(--green-deep);
  font-family: inherit;
  transition: all 160ms ease;
}
.chatbot-suggest:hover { background: var(--sage-soft); border-color: var(--green); }

.chatbot-input-bar {
  border-top: 1px solid var(--rule);
  padding: 14px 16px;
  display: flex;
  gap: 8px;
  align-items: center;
  background: var(--paper);
}
.chatbot-input {
  flex: 1;
  border: none;
  background: var(--paper-warm);
  padding: 12px 14px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 14px;
  color: var(--ink);
  outline: none;
}
.chatbot-input:focus { background: var(--sage-soft); }
.chatbot-send {
  background: var(--green);
  color: var(--paper);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.chatbot-send:disabled { opacity: 0.4; cursor: default; }

/* ===== Decorative leaves ===== */
.leaf-deco {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

/* ===== Marquee strip ===== */
.marquee {
  background: var(--green-deep);
  color: var(--paper);
  padding: 18px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  gap: 56px;
  animation: marquee 36s linear infinite;
  padding-left: 56px;
}
.marquee-item {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 26px;
  color: var(--paper);
  display: inline-flex;
  align-items: center;
  gap: 56px;
}
.marquee-item::after {
  content: "✦";
  font-style: normal;
  color: var(--sage);
  font-size: 14px;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== Page fade ===== */
.page-fade {
  animation: pageFade 360ms ease;
}
@keyframes pageFade {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Scrollbar tweak */
.chatbot-msgs::-webkit-scrollbar { width: 6px; }
.chatbot-msgs::-webkit-scrollbar-thumb { background: var(--rule); border-radius: 999px; }
