/* ==========================================================================
   Concept B — Warm rustic Italian
   Terracotta, ochre and olive on cream. Fraunces for display, rounded frames,
   a fine plaster grain over everything. Cosier and more hand-made than A.
   The texture is an inline SVG turbulence — seamless, tiny, no extra request.
   ========================================================================== */

:root {
  --cream:    #f7f1e6;
  --cream-2:  #efe6d5;
  --ink:      #3a2d22;
  --ink-2:    #5f4c3b;
  --ink-3:    #8a7461;
  --terra:    #b4552f;
  --terra-dk: #8e3f21;
  --ochre:    #c98a2e;
  --olive:    #6b7248;
  --dark:     #33281f;
  --line:     #ddd0b8;
  --focus:    var(--terra);

  --serif: 'Fraunces', ui-serif, Georgia, 'Times New Roman', serif;
  --sans:  'Inter', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;

  --gut:   clamp(1.15rem, 4.5vw, 4rem);
  --stack: clamp(4rem, 9vw, 8rem);
  --round: 14px;

  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
}

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: clamp(1rem, 0.96rem + 0.22vw, 1.09rem);
  line-height: 1.75;
}

/* Plaster grain over the whole page, never intercepting clicks. */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  background-image: var(--grain);
  opacity: 0.28;
  mix-blend-mode: multiply;
}

.wrap { width: min(100% - (var(--gut) * 2), 74rem); margin-inline: auto; }

/* --- Type ---------------------------------------------------------------- */

.dsp {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2rem, 1.35rem + 3vw, 3.75rem);
  line-height: 1.1;
  letter-spacing: -0.012em;
  text-wrap: balance;
}

.script {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.35rem, 1.1rem + 1.1vw, 2rem);
  color: var(--terra);
  line-height: 1.2;
}
.script--sm { font-size: clamp(1.05rem, 0.95rem + 0.5vw, 1.3rem); }

.lede { font-size: clamp(1.05rem, 1rem + 0.35vw, 1.22rem); color: var(--ink-2); max-width: 46rem; }
.note { font-size: 0.94rem; color: var(--ink-3); max-width: 42rem; }

/* --- Ornament divider ---------------------------------------------------- */

.orn {
  display: block;
  width: 84px;
  height: 12px;
  margin-top: 1.2rem;
  background:
    radial-gradient(circle at 12px 6px, var(--terra) 3px, transparent 3.5px),
    radial-gradient(circle at 42px 6px, var(--ochre) 4px, transparent 4.5px),
    radial-gradient(circle at 72px 6px, var(--terra) 3px, transparent 3.5px),
    linear-gradient(var(--line), var(--line)) center / 84px 1px no-repeat;
}

/* --- Buttons ------------------------------------------------------------- */

.pill {
  display: inline-block;
  padding: 0.72rem 1.6rem;
  border-radius: 999px;
  background: var(--terra);
  color: #fff;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-decoration: none;
  box-shadow: 0 2px 0 var(--terra-dk);
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}
.pill:hover { background: var(--terra-dk); transform: translateY(-2px); box-shadow: 0 4px 0 #6f3018; }
.pill:active { transform: translateY(0); box-shadow: 0 1px 0 var(--terra-dk); }
.pill--lg { padding: 0.95rem 2.1rem; font-size: 0.98rem; }

/* --- Header -------------------------------------------------------------- */

.hdr {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 241, 230, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: box-shadow 0.3s ease;
}
.hdr.is-stuck { box-shadow: 0 2px 14px rgba(58, 45, 34, 0.09); }

.hdr__in {
  width: min(100% - (var(--gut) * 2), 74rem);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 0.85rem 0;
}

.brand { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; color: inherit; }
.brand__mark { width: 34px; height: 34px; flex: none; border-radius: 7px; }
.brand__txt { display: grid; line-height: 1.15; }
.brand__txt b { font-family: var(--serif); font-weight: 600; font-size: 1.12rem; }
.brand__txt i { font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-3); font-style: normal; }

.nav { display: flex; gap: clamp(0.9rem, 2vw, 1.9rem); }
.nav a {
  font-family: var(--serif);
  font-size: 0.98rem;
  text-decoration: none;
  color: var(--ink-2);
  padding: 0.3rem 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.nav a:hover { color: var(--terra); border-color: var(--terra); }

.hdr__toggle { display: none; }
.hdr__bars { display: grid; gap: 5px; width: 24px; }
.hdr__bars i { height: 2px; border-radius: 2px; background: var(--ink); }

@media (max-width: 880px) {
  .hdr__toggle { display: block; z-index: 2; }
  .nav {
    position: fixed; inset: 0;
    display: grid; align-content: center; justify-items: center; gap: 1.4rem;
    background: var(--cream);
    opacity: 0; visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s;
  }
  .nav.is-open { opacity: 1; visibility: visible; }
  .nav a { font-size: 1.8rem; }
  body.nav-open { overflow: hidden; }
}

/* --- Hero ---------------------------------------------------------------- */

.hero { padding: clamp(1rem, 2.5vw, 2rem) 0 clamp(2rem, 5vw, 3.5rem); }

.hero__frame {
  position: relative;
  width: min(100% - (var(--gut) * 2), 84rem);
  margin-inline: auto;
  min-height: clamp(28rem, 74vh, 44rem);
  display: grid;
  align-items: end;
  border-radius: clamp(18px, 3vw, 34px);
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 18px 50px rgba(58, 45, 34, 0.18);
}
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__frame::after {
  content: '';
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(51,40,31,0.25) 0%, rgba(51,40,31,0.05) 40%, rgba(51,40,31,0.82) 100%);
}

.hero__body {
  padding: clamp(1.5rem, 4vw, 3.5rem);
  display: grid;
  gap: 1rem;
  justify-items: start;
  color: #fdf9f1;
}
.hero__body .script { color: #f0c79a; }
.hero__title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2.6rem, 1.5rem + 5.4vw, 6rem);
  line-height: 1;
  letter-spacing: -0.02em;
}
.hero__lede { max-width: 38ch; color: rgba(253, 249, 241, 0.9); font-size: clamp(1rem, 0.95rem + 0.4vw, 1.22rem); }

.hero__loc {
  width: min(100% - (var(--gut) * 2), 84rem);
  margin: 1rem auto 0;
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-3);
}

/* --- Sections ------------------------------------------------------------ */

.sec { padding-block: var(--stack); }
.sec--tint { background: var(--cream-2); }
.sec--dark { background: var(--dark); color: var(--cream); }
.sec--dark .lede { color: rgba(247, 241, 230, 0.75); }

.shead { margin-bottom: clamp(2rem, 4.5vw, 3.5rem); display: grid; gap: 0.35rem; }
.shead--light .dsp { color: var(--cream); }
.shead--light .script { color: var(--ochre); }

.cols { display: grid; gap: 1.3rem; }
@media (min-width: 860px) { .cols { grid-template-columns: 1fr 1fr; gap: 1.3rem 3rem; } }
.cols p { color: var(--ink-2); }

.facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-top: clamp(2rem, 4vw, 3rem);
}
@media (min-width: 720px) { .facts { grid-template-columns: repeat(4, 1fr); } }
.facts li {
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: var(--round);
  padding: 1.4rem 1rem;
  text-align: center;
  display: grid;
  gap: 0.3rem;
}
.sec--tint .facts li { background: var(--cream); }
.facts b { font-family: var(--serif); font-size: clamp(1.7rem, 1.4rem + 1.2vw, 2.4rem); color: var(--terra); font-weight: 600; line-height: 1; }
.facts span { font-size: 0.76rem; color: var(--ink-3); }

/* --- Framed photo plate --------------------------------------------------
   Deliberately built to the same recipe as .hero__frame — same width, same
   radius, same shadow — so the aerial reads as a second plate rather than a
   full-bleed band borrowed from another design.
   ------------------------------------------------------------------------ */

.plate {
  position: relative;
  width: min(100% - (var(--gut) * 2), 84rem);
  margin: clamp(3rem, 7vw, 5.5rem) auto 0;
  border-radius: clamp(18px, 3vw, 34px);
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 18px 50px rgba(58, 45, 34, 0.18);
}

.plate__frame {
  display: block;
  height: clamp(16rem, 52vh, 30rem);
  overflow: hidden;
}
.plate__frame img { transition: transform 1.6s cubic-bezier(0.22, 1, 0.36, 1); }
.plate:hover .plate__frame img { transform: scale(1.04); }

.plate__cap {
  position: absolute;
  inset: auto 0 0;
  display: grid;
  gap: 0.25rem;
  padding: clamp(2.5rem, 6vw, 4rem) clamp(1.25rem, 4vw, 3.5rem) clamp(1.1rem, 3vw, 2rem);
  color: #fdf9f1;
  background: linear-gradient(180deg, rgba(51, 40, 31, 0) 0%, rgba(51, 40, 31, 0.72) 55%, rgba(51, 40, 31, 0.88) 100%);
  pointer-events: none;
}
.plate__cap .script { color: #f0c79a; }
.plate__txt {
  max-width: 46ch;
  font-size: clamp(0.9rem, 0.87rem + 0.2vw, 1.02rem);
  line-height: 1.55;
  color: rgba(253, 249, 241, 0.92);
}

/* --- Suite cards --------------------------------------------------------- */

.cards { display: grid; gap: clamp(1.25rem, 3vw, 2.25rem); }
@media (min-width: 900px) { .cards { grid-template-columns: 1fr 1fr; } }

.card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--round);
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  box-shadow: 0 6px 22px rgba(58, 45, 34, 0.07);
}
.sec--tint .card { background: var(--cream); }
.card__media { display: block; aspect-ratio: 3 / 2; overflow: hidden; }
.card__media img { transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1); }
.card:hover .card__media img { transform: scale(1.04); }

.card__body { padding: clamp(1.25rem, 3vw, 2rem); display: grid; gap: 0.85rem; align-content: start; justify-items: start; }
.card__sub { font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ochre); }
.card__body h3 { font-family: var(--serif); font-weight: 600; font-size: clamp(1.6rem, 1.3rem + 1vw, 2.15rem); line-height: 1.1; }
.card__body p { color: var(--ink-2); }

.specs { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.specs li {
  padding: 0.34rem 0.75rem;
  border-radius: 999px;
  background: var(--cream-2);
  border: 1px solid var(--line);
  font-size: 0.74rem;
  color: var(--ink-2);
  white-space: nowrap;
}

.card__thumbs { display: grid; grid-template-columns: repeat(auto-fit, minmax(3.6rem, 1fr)); gap: 0.35rem; width: 100%; }

.thumb {
  display: block;
  border-radius: 9px;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--cream-2);
}
.thumb img { transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1); }
.thumb:hover img { transform: scale(1.07); }
.thumb--wide { aspect-ratio: 16 / 10; max-width: 20rem; border-radius: var(--round); }

/* --- Split (cantina, getting here) --------------------------------------- */

.split { display: grid; gap: clamp(1.5rem, 4vw, 3rem); align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; } }
.split__media { border-radius: var(--round); overflow: hidden; aspect-ratio: 4 / 3; box-shadow: 0 10px 30px rgba(58,45,34,0.14); }
.split__media a { display: block; height: 100%; }
.split__copy { display: grid; gap: 1rem; justify-items: start; align-content: start; }
.split__copy p { color: var(--ink-2); }

.cantina { background:
  linear-gradient(rgba(247,241,230,0.94), rgba(247,241,230,0.94)); }

/* --- Reviews ------------------------------------------------------------- */

.quotes { columns: 1; column-gap: clamp(1rem, 2.5vw, 2rem); }
@media (min-width: 760px)  { .quotes { columns: 2; } }
@media (min-width: 1150px) { .quotes { columns: 3; } }

.quote {
  break-inside: avoid;
  margin-bottom: clamp(1rem, 2.5vw, 2rem);
  padding: 1.6rem 1.5rem 1.4rem;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--round);
  position: relative;
}
.quote::before {
  content: '\201C';
  position: absolute;
  top: 0.1rem; left: 1rem;
  font-family: var(--serif);
  font-size: 3.4rem;
  line-height: 1;
  color: var(--ochre);
  opacity: 0.45;
}
.quote blockquote p { font-size: 1rem; line-height: 1.6; color: var(--ink-2); padding-top: 1.1rem; }
.quote figcaption { margin-top: 0.9rem; padding-top: 0.75rem; border-top: 1px solid var(--line); display: grid; gap: 1px; }
.quote figcaption b { font-size: 0.86rem; font-weight: 600; }
.quote figcaption span { font-size: 0.74rem; color: var(--ink-3); }

/* --- Region -------------------------------------------------------------- */

.nearby { display: grid; gap: 0.75rem; margin-top: clamp(2rem, 4vw, 3rem); }
@media (min-width: 760px) { .nearby { grid-template-columns: repeat(3, 1fr); } }
.nearby li {
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-left: 4px solid var(--olive);
  border-radius: var(--round);
  padding: 1.35rem 1.4rem;
  display: grid;
  gap: 0.3rem;
}
.sec--tint .nearby li { background: var(--cream); }
.nearby b { font-family: var(--serif); font-weight: 600; font-size: 1.55rem; line-height: 1.1; }
.nearby__t { font-size: 0.72rem; letter-spacing: 0.13em; text-transform: uppercase; color: var(--terra); }
.nearby__n { font-size: 0.9rem; color: var(--ink-3); }

.mosaic {
  margin-top: clamp(2rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
}
@media (min-width: 900px) { .mosaic { grid-template-columns: repeat(4, 1fr); } }

/* --- Getting here -------------------------------------------------------- */

.routes { width: 100%; }
.routes li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0;
  border-bottom: 1px dashed var(--line);
  font-size: 0.96rem;
}
.routes li span:last-child { color: var(--terra); white-space: nowrap; font-weight: 500; }

.map { border-radius: var(--round); overflow: hidden; border: 1px solid var(--line); }
.map iframe { width: 100%; aspect-ratio: 4 / 3; border: 0; display: block; filter: sepia(0.16) saturate(0.9); }

/* --- Albuquerque --------------------------------------------------------- */

.abq {
  display: grid;
  gap: clamp(1.5rem, 3.5vw, 2.5rem);
  padding: clamp(1.5rem, 4vw, 2.75rem);
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: var(--round);
}
@media (min-width: 880px) { .abq { grid-template-columns: 1fr 1fr; align-items: center; } }
.abq__copy { display: grid; gap: 0.85rem; justify-items: start; align-content: start; }
.abq__copy h2 { font-family: var(--serif); font-weight: 600; font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2.1rem); line-height: 1.15; }
.abq__copy p { color: var(--ink-2); }
.abq__side { display: grid; gap: 0.9rem; align-content: start; }
.abq__media { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0.4rem; }
.abq__media .thumb { aspect-ratio: 3 / 4; }
@media (max-width: 560px) { .abq__media { grid-template-columns: repeat(3, 1fr); } }

.abq__facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(8.5rem, 1fr));
  gap: 0.4rem;
  width: 100%;
}
.abq__facts > div {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 0.7rem 0.8rem;
  display: grid;
  gap: 2px;
}
.abq__facts dt { font-size: 0.62rem; letter-spacing: 0.13em; text-transform: uppercase; color: var(--ink-3); }
.abq__facts dd { font-size: 0.88rem; font-weight: 600; color: var(--terra); line-height: 1.35; }

/* --- Contact ------------------------------------------------------------- */

.people { display: grid; gap: 0.9rem; margin-top: clamp(2rem, 4vw, 3rem); }
@media (min-width: 800px) { .people { grid-template-columns: repeat(3, 1fr); } }
.person {
  background: rgba(247, 241, 230, 0.06);
  border: 1px solid rgba(247, 241, 230, 0.16);
  border-radius: var(--round);
  padding: 1.5rem 1.4rem;
  display: grid;
  gap: 0.45rem;
  align-content: start;
}
.person h3 { font-family: var(--serif); font-weight: 600; font-size: 1.5rem; }
.person__role { font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(247,241,230,0.5); margin-bottom: 0.3rem; }
.person a {
  color: rgba(247, 241, 230, 0.9);
  text-decoration: none;
  justify-self: start;
  border-bottom: 1px solid rgba(247, 241, 230, 0.25);
  font-size: 0.94rem;
  overflow-wrap: anywhere;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.person a:hover { color: var(--ochre); border-color: var(--ochre); }

/* --- Footer -------------------------------------------------------------- */

.foot { padding-block: 2.5rem 5.5rem; background: var(--dark); color: rgba(247,241,230,0.6); font-size: 0.82rem; }
.foot__in { display: flex; flex-wrap: wrap; gap: 0.5rem 2rem; justify-content: space-between; }
