/* =========================================================
   3 WIRE RANCH — Design System
   ========================================================= */

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

/* ----- Tokens ----- */
:root {
  --brown-deep:   #3E2710;
  --brown-mid:    #5C3D1E;
  --brown-light:  #8B6445;
  --tan:          #C8A97A;
  --tan-light:    #E0CBA8;
  --cream:        #FAF7F2;
  --cream-dark:   #F0EAE0;
  --sage:         #7A8C6E;
  --text-dark:    #2A1F15;
  --text-mid:     #6B5744;
  --text-muted:   #A0917F;
  --white:        #FFFFFF;
  --serif:        'Cormorant Garamond', Georgia, serif;
  --sans:         'Jost', 'Helvetica Neue', sans-serif;
  --transition:   250ms ease;
  --shadow:       0 4px 24px rgba(62,39,16,0.12);
  --shadow-lg:    0 12px 48px rgba(62,39,16,0.18);
}

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

/* ----- Typography ----- */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.15; }
h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.25rem; }
p { font-family: var(--sans); font-weight: 300; font-size: 1rem; color: var(--text-mid); }
.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tan);
}
.section-title { font-family: var(--serif); font-weight: 600; }

/* ----- Image Placeholders ----- */
.ph {
  position: relative;
  overflow: hidden;
  background: repeating-linear-gradient(
    -45deg,
    var(--cream-dark) 0px, var(--cream-dark) 12px,
    #EDE5D8 12px, #EDE5D8 24px
  );
}
.ph::after {
  content: attr(data-ph);
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 1rem;
  font-family: 'Courier New', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brown-light);
  opacity: 0.7;
}

/* ----- Buttons ----- */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--sans); font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.9em 2em; border-radius: 2px;
  transition: all var(--transition);
  cursor: pointer;
}
.btn-primary {
  background: var(--brown-deep); color: var(--white);
}
.btn-primary:hover { background: var(--brown-mid); }
.btn-tan {
  background: var(--tan); color: var(--brown-deep);
}
.btn-tan:hover { background: var(--tan-light); }
.btn-ghost {
  background: transparent; color: var(--white);
  border: 1px solid rgba(255,255,255,0.7);
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }
.btn-outline-dark {
  background: transparent; color: var(--brown-deep);
  border: 1.5px solid var(--brown-deep);
}
.btn-outline-dark:hover { background: var(--brown-deep); color: var(--white); }

/* ----- Info Bar ----- */
#info-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: var(--brown-deep);
  height: 38px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2.5rem;
  transition: transform var(--transition);
}
#info-bar.hidden { transform: translateY(-100%); }
.info-bar__item {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.72rem; font-weight: 400; letter-spacing: 0.06em;
  color: rgba(255,255,255,0.85);
}
.info-bar__item a { color: var(--tan); transition: color var(--transition); }
.info-bar__item a:hover { color: var(--white); }
.info-bar__phone a { color: var(--white); font-weight: 500; }
.info-bar__divider { width: 1px; height: 16px; background: rgba(255,255,255,0.2); }

/* ----- Navbar ----- */
#navbar {
  position: fixed; top: 38px; left: 0; right: 0; z-index: 190;
  padding: 1.5rem 1.5rem 1.5rem 2.5rem;
  display: flex; align-items: center; gap: 1rem;
  transition: background var(--transition), padding var(--transition), top var(--transition), box-shadow var(--transition), transform 300ms ease;
}
#navbar.nav--solid {
  background: var(--brown-deep);
  padding: 1rem 1.5rem 1rem 2.5rem;
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}
#navbar.nav--hidden {
  transform: translateY(calc(-100% - 38px));
}
#navbar.info-hidden { top: 0; }

.nav__logo {
  display: flex; align-items: center;
  text-decoration: none;
}
.nav__logo-img { width: 64px; height: 64px; object-fit: contain; display: block; }
.footer__logo-img { width: 56px; height: 56px; object-fit: contain; display: block; }
.nav__links {
  display: none; align-items: center; gap: 2.2rem;
  margin-left: auto;
}
.nav__links a {
  font-family: var(--sans); font-size: 0.72rem; font-weight: 400;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  transition: color var(--transition);
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
  position: relative;
}
.nav__links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--tan);
  transform: scaleX(0); transform-origin: center;
  transition: transform var(--transition);
}
.nav__links a:hover { color: var(--tan); }
.nav__links a:hover::after { transform: scaleX(1); }
.nav__links a.active { color: var(--tan); }
.nav__right {
  display: flex; align-items: center; gap: 1.5rem;
}
.nav__book {
  font-family: var(--sans); font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.65em 1.5em;
  background: var(--tan); color: var(--brown-deep);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav__book:hover { background: var(--tan-light); }

/* Mobile menu */
.nav__hamburger {
  display: flex; flex-direction: column; gap: 5px; padding: 4px;
}
.nav__hamburger span {
  display: block; width: 24px; height: 1.5px;
  background: var(--white); transition: all var(--transition);
}
.nav__mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 200;
  background: var(--brown-deep); flex-direction: column;
  align-items: center; justify-content: center; gap: 2.5rem;
}
.nav__mobile-menu.open { display: flex; }
.nav__mobile-menu a {
  font-family: var(--serif); font-size: 2.2rem; font-weight: 500;
  color: var(--white); letter-spacing: 0.04em;
  transition: color var(--transition);
}
.nav__mobile-menu a:hover { color: var(--tan); }
.nav__mobile-close {
  position: absolute; top: 1.5rem; right: 2rem;
  font-size: 2rem; color: var(--white); cursor: pointer;
  background: none; border: none;
}

/* ----- Hero ----- */
.hero {
  position: relative; width: 100%; height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background: var(--brown-deep); /* fallback */
}
.hero__bg .ph {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, #3E2710 0%, #5C3D1E 40%, #7A6040 70%, #3E2710 100%);
}
.hero__bg .ph::after { color: rgba(255,255,255,0.25); font-size: 0.85rem; }
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,12,5,0.72) 0%, rgba(20,12,5,0.25) 50%, rgba(20,12,5,0.35) 100%);
}
.hero__content {
  position: relative; z-index: 2;
  text-align: center; padding: 0 2rem;
  max-width: 860px;
}
.hero__eyebrow {
  font-family: var(--sans); font-size: 0.72rem; font-weight: 400;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--tan); margin-bottom: 1.2rem;
}
.hero__title {
  font-family: var(--serif); font-size: clamp(3.2rem, 7vw, 6.5rem);
  font-weight: 500; color: var(--white); line-height: 1.05;
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.hero__title em { font-style: italic; color: var(--tan-light); }
.hero__sub {
  font-family: var(--sans); font-size: 1rem; font-weight: 300;
  color: rgba(255,255,255,0.8); margin-bottom: 2.5rem;
  letter-spacing: 0.06em;
}
.hero__ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero__scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  font-family: var(--sans); font-size: 0.65rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(255,255,255,0.5);
  animation: scrollBounce 2s ease-in-out infinite;
}
.hero__scroll svg { width: 20px; opacity: 0.5; }
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ----- Page Hero (inner pages) ----- */
.page-hero {
  position: relative; height: 55vh; min-height: 380px;
  display: flex; align-items: flex-end;
  overflow: hidden;
  margin-top: 76px; /* nav height */
}
.page-hero .ph { position: absolute; inset: 0; }
.page-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,12,5,0.78) 0%, rgba(20,12,5,0.2) 60%);
}
.page-hero__content {
  position: relative; z-index: 2;
  padding: 3rem 5vw 3.5rem;
  max-width: 900px;
}
.page-hero__content .eyebrow { margin-bottom: 0.75rem; }
.page-hero__content h1 { color: var(--white); }

/* ----- Sections ----- */
.section { padding: 6rem 5vw; }
.section--cream { background: var(--cream); }
.section--cream-dark { background: var(--cream-dark); }
.section--brown { background: var(--brown-deep); color: var(--white); }
.section--brown h2, .section--brown h3 { color: var(--white); }
.section--brown p { color: rgba(255,255,255,0.7); }
.section--brown .eyebrow { color: var(--tan); }

.section__header { text-align: center; max-width: 680px; margin: 0 auto 4rem; }
.section__header .eyebrow { margin-bottom: 0.75rem; }
.section__header h2 { margin-bottom: 1rem; }
.section__header p { font-size: 1.05rem; }

/* Tan rule below heading */
.rule {
  display: block; width: 40px; height: 2px;
  background: var(--tan); margin: 1rem auto 0;
}
.rule--left { margin-left: 0; }

/* ----- Activities Cards Grid ----- */
.activities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5px;
}
.activity-card {
  position: relative; overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}
.activity-card .ph { position: absolute; inset: 0; }
.activity-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,12,5,0.85) 0%, rgba(20,12,5,0.1) 55%);
  transition: background var(--transition);
}
.activity-card:hover .activity-card__overlay {
  background: linear-gradient(to top, rgba(20,12,5,0.92) 0%, rgba(20,12,5,0.45) 100%);
}
.activity-card__content {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.5rem;
}
.activity-card__badge {
  position: absolute; top: 1rem; right: 1rem;
  background: var(--tan); color: var(--brown-deep);
  font-size: 0.6rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 0.3em 0.7em; border-radius: 1px;
}
.activity-card__name {
  font-family: var(--serif); font-size: 1.35rem; font-weight: 600;
  color: var(--white); line-height: 1.2; margin-bottom: 0.4rem;
}
.activity-card__desc {
  font-size: 0.82rem; color: rgba(255,255,255,0.75); line-height: 1.45;
  max-height: 0; overflow: hidden;
  transition: max-height 350ms ease, opacity 300ms ease;
  opacity: 0;
  margin-bottom: 0;
}
.activity-card:hover .activity-card__desc { max-height: 80px; opacity: 1; margin-bottom: 0.75rem; }
.activity-card__arrow {
  font-family: var(--sans); font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--tan); display: flex; align-items: center; gap: 0.4rem;
}
.activity-card__img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}
.activity-card:hover .activity-card__img { transform: scale(1.04); }

/* ----- Editorial (alternating) ----- */
.editorial {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; align-items: stretch;
  min-height: 520px;
}
.editorial--reverse .editorial__image { order: 2; }
.editorial--reverse .editorial__text { order: 1; }
.editorial__image { position: relative; min-height: 420px; }
.editorial__image .ph,
.editorial__image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.editorial__text {
  padding: 5rem 6vw;
  display: flex; flex-direction: column; justify-content: center;
  background: var(--cream);
}
.editorial__text .eyebrow { margin-bottom: 0.75rem; }
.editorial__text h2 { margin-bottom: 1rem; }
.editorial__text p { margin-bottom: 1.5rem; max-width: 480px; line-height: 1.7; }
.editorial__text .rule--left { margin-bottom: 1.5rem; }

/* Editorial dark variant */
.editorial--dark .editorial__text { background: var(--brown-deep); }
.editorial--dark .editorial__text h2,
.editorial--dark .editorial__text h3 { color: var(--white); }
.editorial--dark .editorial__text p { color: rgba(255,255,255,0.7); }

/* ----- Product Grid ----- */
.product-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.product-card {
  background: var(--white); border-radius: 2px;
  overflow: hidden; transition: box-shadow var(--transition);
}
.product-card:hover { box-shadow: var(--shadow); }
.product-card__img { aspect-ratio: 1/1; position: relative; }
.product-card__img .ph { position: absolute; inset: 0; }
.product-card__body { padding: 1.2rem; }
.product-card__name {
  font-family: var(--serif); font-size: 1.1rem; font-weight: 500;
  color: var(--text-dark); margin-bottom: 0.25rem;
}
.product-card__price {
  font-family: var(--sans); font-size: 0.85rem; color: var(--tan);
  font-weight: 500;
}

/* ----- Blog Card ----- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.blog-card { cursor: pointer; }
.blog-card__img { aspect-ratio: 16/10; position: relative; overflow: hidden; margin-bottom: 1.2rem; }
.blog-card__img .ph { position: absolute; inset: 0; }
.blog-card__img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 400ms ease; }
.blog-card:hover .blog-card__img img { transform: scale(1.04); }
.blog-card__cat {
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--tan); margin-bottom: 0.5rem;
}
.blog-card__title {
  font-family: var(--serif); font-size: 1.3rem; font-weight: 600;
  color: var(--text-dark); margin-bottom: 0.5rem; line-height: 1.3;
}
.blog-card:hover .blog-card__title { color: var(--brown-mid); }
.blog-card__excerpt { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }
.blog-card__meta { margin-top: 0.75rem; font-size: 0.72rem; color: var(--text-muted); letter-spacing: 0.05em; }

/* ----- Testimonials ----- */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.testimonial-card {
  background: var(--white); padding: 2.5rem;
  border-top: 2px solid var(--tan);
}
.testimonial-card__stars { color: var(--tan); font-size: 0.85rem; letter-spacing: 0.2em; margin-bottom: 1rem; }
.testimonial-card__text {
  font-family: var(--serif); font-size: 1.1rem; font-style: italic;
  color: var(--text-dark); line-height: 1.65; margin-bottom: 1.5rem;
}
.testimonial-card__author {
  font-family: var(--sans); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-mid);
}
.testimonial-card__source { font-size: 0.65rem; color: var(--text-muted); margin-top: 0.2rem; letter-spacing: 0.06em; }

/* ----- FAQ Accordion ----- */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--tan-light);
}
.faq-question {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 1.4rem 0; text-align: left;
  font-family: var(--sans); font-size: 1rem; font-weight: 400;
  color: var(--text-dark); cursor: pointer; background: none; border: none;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--brown-mid); }
.faq-question svg { width: 18px; flex-shrink: 0; transition: transform var(--transition); color: var(--tan); }
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 350ms ease, padding 350ms ease;
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer p { padding-bottom: 1.5rem; font-size: 0.95rem; line-height: 1.7; }

/* ----- Activity Detail ----- */
.activity-detail { max-width: 860px; margin: 0 auto; }
.activity-detail__specs {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem; margin: 2.5rem 0;
  padding: 2rem; background: var(--cream-dark);
}
.spec-item__label {
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--tan); margin-bottom: 0.3rem;
}
.spec-item__value { font-family: var(--serif); font-size: 1.05rem; color: var(--text-dark); }

.cost-notice {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: #FFF8EE; border: 1px solid var(--tan);
  padding: 0.6em 1em; border-radius: 2px; margin-bottom: 1.5rem;
  font-size: 0.8rem; font-weight: 500; color: var(--brown-mid);
}

/* ----- Cam Page ----- */
.cam-embed {
  position: relative; width: 100%; aspect-ratio: 16/9;
  background: var(--brown-deep);
  display: flex; align-items: center; justify-content: center;
}
.cam-live-dot {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--white);
}
.cam-live-dot::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: #E05C5C;
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

/* ----- Newsletter ----- */
.newsletter-form {
  display: flex; gap: 0.5rem; max-width: 420px;
}
.newsletter-form input {
  flex: 1; padding: 0.75em 1em;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.08);
  color: var(--white); font-family: var(--sans); font-size: 0.85rem;
  border-radius: 2px; outline: none;
  transition: border-color var(--transition);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-form input:focus { border-color: var(--tan); }
.newsletter-form button {
  padding: 0.75em 1.2em;
  background: var(--tan); color: var(--brown-deep);
  font-family: var(--sans); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  border-radius: 2px; cursor: pointer; white-space: nowrap;
  transition: background var(--transition);
}
.newsletter-form button:hover { background: var(--tan-light); }

/* ----- Footer ----- */
#footer {
  background: var(--brown-deep); color: var(--white);
  padding: 5rem 5vw 0;
}
.footer__top {
  display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: 4rem; padding-bottom: 4rem;
  border-bottom: 1px solid rgba(200,169,122,0.2);
}
.footer__brand p { color: rgba(255,255,255,0.55); font-size: 0.88rem; margin: 1rem 0 0.5rem; line-height: 1.6; }
.footer__brand address { font-style: normal; font-size: 0.82rem; color: rgba(255,255,255,0.4); }
.footer__col h4 {
  font-family: var(--sans); font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--tan);
  margin-bottom: 1.25rem;
}
.footer__col ul { display: flex; flex-direction: column; gap: 0.65rem; }
.footer__col li a {
  font-size: 0.88rem; color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer__col li a:hover { color: var(--tan); }
.footer__contact p { font-size: 0.88rem; color: rgba(255,255,255,0.65); margin-bottom: 0.4rem; }
.footer__contact a { color: var(--tan); font-size: 0.88rem; }
.footer__social { display: flex; gap: 1rem; margin-top: 1.5rem; }
.footer__social a {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.65); font-size: 0.85rem;
  transition: all var(--transition);
}
.footer__social a:hover { border-color: var(--tan); color: var(--tan); }
.footer__bottom {
  padding: 1.5rem 0;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.75rem;
}
.footer__bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.35); }
.footer__bottom a { color: rgba(255,255,255,0.35); transition: color var(--transition); }
.footer__bottom a:hover { color: var(--tan); }

/* ----- View All Link ----- */
.view-all {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--sans); font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--brown-mid);
  border-bottom: 1px solid var(--tan);
  padding-bottom: 0.15em;
  transition: color var(--transition), border-color var(--transition);
}
.view-all:hover { color: var(--tan); border-color: var(--tan); }
.view-all svg { width: 14px; transition: transform var(--transition); }
.view-all:hover svg { transform: translateX(3px); }

/* ----- Utility ----- */
.container { max-width: 1280px; margin: 0 auto; padding: 0 5vw; }
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-2 { margin-bottom: 2rem; }
.gap-center { display: flex; justify-content: center; }

/* ----- Stay page ----- */
.booking-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 4rem; align-items: start; }
.booking-embed {
  background: var(--white); border-radius: 2px; overflow: hidden;
  box-shadow: var(--shadow); min-height: 600px;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 1rem; padding: 2rem;
  text-align: center;
}
.booking-embed p { font-size: 0.85rem; }

/* ----- About timeline ----- */
.timeline { max-width: 760px; margin: 0 auto; }
.timeline-item {
  display: grid; grid-template-columns: 80px 1fr;
  gap: 1.5rem; padding: 2rem 0;
  border-bottom: 1px solid var(--tan-light);
}
.timeline-item:last-child { border-bottom: none; }
.timeline-year {
  font-family: var(--serif); font-size: 1.8rem; font-weight: 300;
  color: var(--tan); line-height: 1;
}
.timeline-content h4 { font-family: var(--serif); font-size: 1.25rem; margin-bottom: 0.5rem; }
.timeline-content p { font-size: 0.92rem; }

/* ----- Shop ----- */
.shop-categories {
  display: flex; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 3rem;
}
.cat-pill {
  padding: 0.5em 1.2em; border-radius: 100px;
  font-family: var(--sans); font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  border: 1px solid var(--tan-light); color: var(--text-mid);
  cursor: pointer; transition: all var(--transition);
}
.cat-pill.active, .cat-pill:hover {
  background: var(--brown-deep); color: var(--white); border-color: var(--brown-deep);
}

/* ----- Map section ----- */
.map-embed {
  width: 100%; height: 420px;
  background: var(--cream-dark);
  display: flex; align-items: center; justify-content: center;
}

/* ----- Responsive ----- */
@media (max-width: 1100px) {
  .activities-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .activity-detail__specs { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 861px) {
  .nav__links { display: flex; }
  .nav__hamburger { display: none; }
}
@media (max-width: 860px) {
  #info-bar { padding: 0 1.5rem; }
  .info-bar__item:nth-child(3) { display: none; }
  #navbar { padding: 1.2rem 1.5rem; }
  #navbar.nav--solid { padding: 0.8rem 1.5rem; }
  .nav__book { display: none; }
  .editorial { grid-template-columns: 1fr; }
  .editorial--reverse .editorial__image { order: 1; }
  .editorial--reverse .editorial__text { order: 2; }
  .editorial__image { min-height: 300px; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .booking-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .activities-grid { grid-template-columns: 1fr; }
  .activity-card { aspect-ratio: 4/3; }
  .blog-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; gap: 2rem; }
  .section { padding: 4rem 5vw; }
  .hero__ctas { flex-direction: column; align-items: center; }
}
