/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --rose:       #c9748a;
  --rose-light: #e8a5b5;
  --rose-pale:  #f5dde4;
  --rose-dark:  #a0546a;
  --gold:       #b8973a;
  --cream:      #fdf8f5;
  --cream-dark: #f5ede8;
  --white:      #ffffff;
  --text:       #3a2a2e;
  --text-light: #7a5a62;
}

html { scroll-behavior: smooth; }
body { font-family: 'Cormorant Garamond', Georgia, serif; background: var(--cream); color: var(--text); }

/* HEADER */
header { width: 100%; background: var(--white); border-bottom: 1px solid rgba(201,116,138,.18); position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 20px rgba(201,116,138,.08); }
.logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 0 8px;
}

.logo-wrap img {
  width: 130px;
  margin-top: -20px;
}


nav { display: flex; justify-content: center; align-items: center; padding: 0 24px 4px;margin-top: -25px;}
nav ul { list-style: none; display: flex; align-items: center; }
nav ul li a { display: block; padding: 10px 16px; font-family: 'Cormorant Garamond', serif; font-size: 0.9rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--text); text-decoration: none; position: relative; transition: color .3s; }
nav ul li a::after { content: ''; position: absolute; bottom: 6px; left: 16px; right: 16px; height: 1px; background: var(--rose); transform: scaleX(0); transform-origin: left; transition: transform .35s cubic-bezier(.4,0,.2,1); }
nav ul li a:hover, nav ul li a.active { color: var(--rose); }
nav ul li a:hover::after, nav ul li a.active::after { transform: scaleX(1); }
.nav-divider { width: 1px; height: 14px; background: rgba(201,116,138,.3); margin: 0 8px; }
.social-group { display: flex; align-items: center; gap: 2px; padding-left: 6px; }
.social-group a { display: flex; align-items: center; justify-content: center; width: 30px; height: 30px; color: var(--text-light); text-decoration: none; transition: color .3s, transform .25s; }
.social-group a:hover { color: var(--rose); transform: translateY(-2px); }
.social-group svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.social-group svg.fill-icon { fill: currentColor; stroke: none; }
.header-line { height: 1px; background: linear-gradient(90deg, transparent, var(--rose-light) 30%, var(--rose) 50%, var(--rose-light) 70%, transparent); opacity: .4; }

/* ROSE DIVIDER */
.rose-divider { display: flex; align-items: center; justify-content: center; gap: 10px; margin: 16px 0; }
.rose-divider::before, .rose-divider::after { content: ''; display: block; width: 48px; height: 1px; background: linear-gradient(90deg, transparent, var(--rose-light)); }
.rose-divider::after { background: linear-gradient(90deg, var(--rose-light), transparent); }
.rose-divider span { font-size: 0.6rem; color: var(--rose); }
.rose-divider.sm::before, .rose-divider.sm::after { width: 28px; }
.rose-divider.sm { margin: 10px 0; }

/* SLIDER */
.slider { width: 100%; height: 600px; position: relative; overflow: hidden; background: #2a1520; }
.slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.2s ease; pointer-events: none; }
.slide.active { opacity: 1; pointer-events: auto; }
.slide img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; display: block; transform: scale(1.05); transition: transform 7s ease-out; filter: brightness(.7); }
.slide.active img { transform: scale(1); }
.slide-caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 80px 60px 52px; background: linear-gradient(to top, rgba(42,21,32,.7) 0%, transparent 100%); color: #fff; opacity: 0; transform: translateY(16px); transition: opacity .9s .5s, transform .9s .5s; }
.slide.active .slide-caption { opacity: 1; transform: translateY(0); }
.caption-script { font-family: 'Great Vibes', cursive; font-size: clamp(1.4rem, 3vw, 2.2rem); color: var(--rose-light); line-height: 1; margin-bottom: 4px; }
.slide-caption h2 { font-family: 'Great Vibes', cursive; font-size: clamp(2.8rem, 6vw, 5rem); color: #fff; line-height: 1; margin-bottom: 10px; }
.caption-sub { font-family: 'Cormorant Garamond', serif; font-size: 0.85rem; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.75); }
.slider-btn { position: absolute; top: 50%; transform: translateY(-50%); z-index: 10; width: 46px; height: 46px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.3); border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; backdrop-filter: blur(4px); transition: background .3s, border-color .3s, transform .3s; }
.slider-btn:hover { background: rgba(201,116,138,.5); border-color: var(--rose-light); transform: translateY(-50%) scale(1.1); }
.slider-btn svg { width: 16px; height: 16px; stroke: #fff; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.slider-btn.prev { left: 24px; }
.slider-btn.next { right: 24px; }
.slider-dots { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 10; }
.dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,.4); border: 1px solid rgba(255,255,255,.5); cursor: pointer; transition: background .3s, transform .3s; }
.dot.active { background: var(--rose-light); border-color: var(--rose-light); transform: scale(1.4); }

/* INTRO */
.intro-section { background: var(--white); padding: 80px 6vw; text-align: center; position: relative; }
.intro-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(232,165,181,.12) 0%, transparent 70%); pointer-events: none; }
.intro-inner { max-width: 700px; margin: 0 auto; position: relative; }
.intro-script { font-family: 'Great Vibes', cursive; font-size: clamp(1.8rem, 3.5vw, 2.8rem); color: var(--rose); line-height: 1; margin-bottom: 6px; }
.intro-title { font-family: 'Cinzel', serif; font-size: clamp(1.6rem, 4vw, 3rem); color: var(--text); letter-spacing: .06em; line-height: 1.1; }
.intro-title span { color: var(--rose); }
.intro-text { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-style: italic; line-height: 1.9; color: var(--text-light); margin-bottom: 32px; }
.btn-princess { display: inline-block; font-family: 'Cormorant Garamond', serif; font-size: 0.78rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--white); background: linear-gradient(135deg, var(--rose), var(--rose-dark)); text-decoration: none; padding: 14px 36px; border-radius: 2px; transition: transform .3s, box-shadow .3s; box-shadow: 0 4px 16px rgba(201,116,138,.3); }
.btn-princess:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,116,138,.4); }
.btn-princess--sm { padding: 10px 24px; font-size: 0.72rem; margin-top: 20px; }

/* HOME GRID */
.home-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--rose-pale); }
.grid-cell { position: relative; overflow: hidden; min-height: 300px; max-height: 360px; }
.grid-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .7s cubic-bezier(.4,0,.2,1); }
.grid-img:hover img { transform: scale(1.05); }
.grid-text { background: var(--white); display: flex; align-items: center; justify-content: center; text-align: center; padding: 32px 36px; }
.grid-text-inner { max-width: 300px; }
.grid-text h3 { font-family: 'Cinzel', serif; font-size: clamp(1rem, 1.8vw, 1.4rem); font-weight: 600; letter-spacing: .15em; text-transform: uppercase; color: var(--text); margin-bottom: 12px; }
.grid-text p { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-style: italic; line-height: 1.75; color: var(--text-light); margin-bottom: 20px; }
.gold-divider { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 18px; }
.gold-divider::before, .gold-divider::after { content: ''; display: block; width: 40px; height: 1px; background: var(--gold); }
.gold-divider span { display: block; width: 4px; height: 4px; border-radius: 50%; background: var(--gold); }
.grid-link { display: inline-block; font-family: 'Cormorant Garamond', serif; font-size: 0.72rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--rose); text-decoration: none; border-bottom: 1px solid var(--rose-light); padding-bottom: 2px; transition: color .3s, border-color .3s, letter-spacing .3s; }
.grid-link:hover { color: var(--rose-dark); border-color: var(--rose-dark); letter-spacing: .28em; }
.grid-text--pink { background: var(--cream); }
.script-heading { font-family: 'Great Vibes', cursive; font-size: clamp(1.8rem, 3vw, 2.6rem); color: var(--rose); line-height: 1.3; margin-bottom: 20px; }

/* SECTION HEADER */
.section-header { text-align: center; padding: 64px 6vw 40px; }
.section-script { font-family: 'Great Vibes', cursive; font-size: clamp(1.4rem, 2.5vw, 2rem); color: var(--rose); line-height: 1; margin-bottom: 4px; }
.section-title { font-family: 'Cinzel', serif; font-size: clamp(1.6rem, 4vw, 2.8rem); font-weight: 600; letter-spacing: .2em; color: var(--text); line-height: 1.05; }
.section-sub { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-style: italic; color: var(--text-light); margin-top: 16px; line-height: 1.6; }

/* EXPERIENCIAS */
.exp-section { background: var(--cream); padding-bottom: 72px;}
.exp-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 1400px; margin: 0 auto; padding: 0 6vw; }
.exp-card { background: var(--white); border: 1px solid rgba(201,116,138,.15); border-radius: 4px; overflow: hidden; box-shadow: 0 4px 24px rgba(201,116,138,.08); transition: transform .3s, box-shadow .3s; }
.exp-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(201,116,138,.15); }
.exp-img-wrap { position: relative; height: 480px; overflow: hidden; }
.exp-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }

.exp-price { position: absolute; top: 14px; right: 14px; background: var(--rose); color: #fff; font-family: 'Cinzel', serif; font-size: 0.82rem; font-weight: 600; letter-spacing: .06em; padding: 5px 14px; border-radius: 2px; }
.exp-body { padding: 24px 24px 20px; }
.exp-tag { font-family: 'Cormorant Garamond', serif; font-size: 0.7rem; letter-spacing: .2em; color: var(--rose-light); text-transform: uppercase; margin-bottom: 4px; }
.exp-body h3 { font-family: 'Great Vibes', cursive; font-size: clamp(1.6rem, 2.2vw, 2.2rem); color: var(--text); line-height: 1.1; }
.exp-body h3 em { font-style: normal; color: var(--rose); }
.exp-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 8px 0 14px; }
.exp-cols h4 { font-family: 'Cinzel', serif; font-size: .9rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--rose); margin-bottom: 6px; margin-top: 10px; }
.exp-cols h4:first-child { margin-top: 0; }
.exp-cols ul { list-style: none; }
.exp-cols ul li { font-family: 'Cormorant Garamond', serif; font-size: 1rem; font-style: italic; color: var(--text-light); padding: 2px 0 2px 12px; position: relative; line-height: 1.35; }
.exp-cols ul li::before { content: '·'; position: absolute; left: 0; color: var(--rose-light); }
.exp-price-line { font-family: 'Cormorant Garamond', serif; font-size: 1rem; letter-spacing: .08em; color: var(--rose); font-style: italic; text-align: center; border-top: 1px solid var(--rose-pale); padding-top: 10px; margin-top: 4px; }
.slide-track {
  display: flex;
  height: 100%;
  transition: transform .45s cubic-bezier(.4, 0, .2, 1);
}
.slide-track img {
  min-width: 100%;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
}
.slide-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.92);
  border: none;
  border-radius: 2px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background .2s, opacity .2s;
  padding: 0;
}
.slide-arrow:hover { background: #fff; }
.slide-arrow.prev { left: 10px; }
.slide-arrow.next { right: 10px; }
.slide-arrow svg {
  width: 18px;
  height: 18px;
  stroke: var(--rose);
  stroke-width: 2.2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.slide-arrow.hidden { opacity: 0; pointer-events: none; }

/* SPA */
.spa-section { background: var(--white); padding-bottom: 72px; position: relative; }
.spa-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center top, rgba(232,165,181,.15) 0%, transparent 60%); pointer-events: none; }
.spa-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1400px; margin: 0 auto; padding: 0 6vw; position: relative; }
.spa-card { background: var(--cream); border: 1px solid rgba(201,116,138,.18); border-radius: 4px; padding: 36px 28px 32px; text-align: center; position: relative; transition: transform .3s, box-shadow .3s; }
.spa-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(201,116,138,.12); }
.spa-card--featured { background: linear-gradient(135deg, #fff 0%, var(--rose-pale) 100%); border-color: var(--rose); box-shadow: 0 8px 32px rgba(201,116,138,.15); }
.spa-ribbon { position: absolute; top: -1px; left: 50%; transform: translateX(-50%); background: var(--rose); color: #fff; font-family: 'Cormorant Garamond', serif; font-size: 0.66rem; letter-spacing: .14em; text-transform: uppercase; padding: 4px 14px; border-radius: 0 0 4px 4px; white-space: nowrap; }
.spa-price-tag { font-family: 'Cinzel', serif; font-size: 1.6rem; font-weight: 600; color: var(--rose); margin-bottom: 10px; }
.spa-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 700; letter-spacing: .08em; color: var(--text); }
.spa-card p { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-style: italic; line-height: 1.75; color: var(--text-light); margin-bottom: 14px; }
.spa-gift { font-family: 'Cormorant Garamond', serif; font-size: 1rem; font-style: italic; color: var(--rose-dark); background: rgba(201,116,138,.08); border-left: 2px solid var(--rose-light); padding: 9px 12px; text-align: left; border-radius: 0 2px 2px 0; }
.spa-gift strong { color: var(--rose); font-style: normal; }
/* SPA GALLERY */
.spa-gallery {
  max-width: 100%;
  margin: 48px auto 0;
  padding: 0 6vw;

}

.spa-gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.spa-gallery-item {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
  border: 1px solid rgba(201, 116, 138, 0.18);
}

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

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

.spa-gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,116,138,0.45) 0%, rgba(232,165,181,0.3) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: #fff;
  font-size: 1.6rem;
}

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

/* MODAL */
.spa-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(20, 10, 14, 0.88);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.spa-modal.is-open {
  display: flex;
  animation: spaFadeIn 0.25s ease;
}

@keyframes spaFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.spa-modal-close {
  position: absolute;
  top: 18px;
  right: 22px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.75);
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s;
  z-index: 10;
  padding: 4px 8px;
}

.spa-modal-close:hover {
  color: #fff;
}

.spa-modal-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 92vw;
  max-height: 82vh;
}

.spa-modal-img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 82vw;
  max-height: 80vh;
}

.spa-modal-img-wrap img {
  max-width: 100%;
  max-height: 78vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
  display: block;
  animation: spaImgIn 0.3s ease;
}

@keyframes spaImgIn {
  from { opacity: 0; transform: scale(0.96); }
  to   { opacity: 1; transform: scale(1); }
}

.spa-modal-nav {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.85);
  font-size: 2rem;
  line-height: 1;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.spa-modal-nav:hover {
  background: rgba(201,116,138,0.5);
  color: #fff;
}

.spa-modal-dots {
  display: flex;
  gap: 8px;
}

.spa-modal-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  transition: background 0.2s;
  cursor: pointer;
}

.spa-modal-dot.active {
  background: var(--rose, #C9748A);
}

/* Responsive */
@media (max-width: 768px) {
  .spa-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 7px;
  }
  .spa-gallery-grid .spa-gallery-item:nth-child(4),
  .spa-gallery-grid .spa-gallery-item:nth-child(5) {
    display: none;
  }
  .spa-modal-nav { display: none; }
}

/* RESERVACIONES */
.res-section { background: var(--cream-dark); padding-bottom: 72px; }
.res-inner { max-width: 1400px; margin: 0 auto; }
.res-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; padding: 0 6vw; }
.res-card { background: var(--white); border: 1px solid rgba(201,116,138,.15); border-radius: 4px; padding: 28px 24px; box-shadow: 0 2px 16px rgba(201,116,138,.06); }
.res-card h3 { font-family: 'Cinzel', serif; font-size: 0.95rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; color: var(--rose); margin-bottom: 0; }
.res-card h4 { font-family: 'Cinzel', serif; font-size: 0.68rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--text); margin: 16px 0 6px; }
.res-card ul { list-style: none; }
.res-card ul li { font-family: 'Cormorant Garamond', serif; font-size:1.1rem; font-style: italic; color: var(--text-light); padding: 3px 0 3px 14px; position: relative; line-height: 1.4; }
.res-card ul li::before { content: '·'; position: absolute; left: 0; color: var(--rose); }
.res-card--important { border-color: var(--rose); }

/* PG GRID */
.pg-section { padding: 80px 0; background: var(--white);}
.pg-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 4px; }
.pg-cell { overflow: hidden; position: relative; }
.pg-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .65s cubic-bezier(.4,0,.2,1); }
.pg-img:hover img { transform: scale(1.07); }
.pg-wide { grid-column: span 2; }
.pg-tall { grid-row: span 2; }
.pg-badge { position: absolute; top: 12px; right: 12px; z-index: 2; background: var(--rose); color: #fff; font-family: 'Cormorant Garamond', serif; font-size: 0.7rem; font-style: italic; letter-spacing: .06em; padding: 4px 12px; border-radius: 2px; }
.pg-text { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 22px 26px; background: var(--white); }
.pg-open { border: 1px solid rgba(201,116,138,.3); }
.pg-hours { font-family: 'Cormorant Garamond', serif; font-size: 0.76rem; font-style: italic; color: var(--rose); letter-spacing: .06em; margin-bottom: 7px; }
.pg-open h3 { font-family: 'Cinzel', serif; font-size: clamp(1rem, 1.8vw, 1.7rem); font-weight: 600; color: var(--text); line-height: 1.1; }
.pg-quote { border: 1px solid rgba(201,116,138,.18); align-items: center; justify-content: flex-start; padding-top: 26px; grid-row: span 2; overflow-y: hidden; }
.pg-script-quote { font-family: 'Great Vibes', cursive; font-size: clamp(1.4rem, 1.8vw, 2rem); color: var(--rose); line-height: 1.35; text-align: center; width: 100%; }


/* FOOTER */
.socials-bar { width: 100%; padding: 48px 24px 40px; background: var(--text); display: flex; flex-direction: column; align-items: center; justify-content: center; position: relative; gap: 18px; }
.footer-script { font-family: 'Great Vibes', cursive; font-size: clamp(1.8rem, 4vw, 3rem); color: var(--rose-light); }
.footer-copy { font-family: 'Cormorant Garamond', serif; font-size: 0.76rem; letter-spacing: .08em; color: rgba(255,255,255,.35); text-align: center; }
.socials-inner { display: flex; align-items: center; gap: 20px; }
.social-footer-link { display: flex; align-items: center; justify-content: center; text-decoration: none; color: var(--rose-light); transition: color .3s, transform .25s; }
.social-footer-link:hover { color: #fff; transform: translateY(-3px); }
.social-footer-link svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.social-footer-link svg[style*="fill"] { fill: currentColor; stroke: none; }
.back-to-top { position: absolute; right: 24px; bottom: 24px; width: 32px; height: 32px; background: none; border: 1px solid rgba(201,116,138,.3); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .3s; }
.back-to-top svg { width: 12px; height: 12px; stroke: var(--rose-light); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.back-to-top:hover { background: var(--rose); }
.back-to-top:hover svg { stroke: #fff; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .exp-grid { grid-template-columns: 1fr; }
  .spa-grid { grid-template-columns: 1fr; max-width: 480px; }
  .res-grid { grid-template-columns: 1fr; }
  .pg-grid { grid-template-columns: repeat(2, 1fr); }
  .pg-wide { grid-column: span 2; }
  .pg-tall, .pg-quote { grid-row: span 1; }
}
@media (max-width: 768px) {
  nav ul { flex-wrap: wrap; justify-content: center; }
  nav ul li a { padding: 8px 10px; font-size: 0.68rem; }
  .nav-divider, .social-group { display: none; }
  .slider { height: 380px; }
  .slide-caption { padding: 48px 24px 32px; }
  .home-grid { grid-template-columns: 1fr; }
  .grid-cell { max-height: 260px; }
  .contact-grid { grid-template-columns: 1fr; }
  .exp-cols { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .logo-text { font-size: 0.9rem; }
  .slider { height: 300px; }
  .pg-grid { grid-template-columns: 1fr; }
}