/* CHOPS House — Minimal v2 */

:root{
  --bg:#000;
  --fg:#fff;
  --line:#fff;
  --muted:rgba(255,255,255,.75);
  --muted2:rgba(255,255,255,.55);
}

*{ box-sizing:border-box; }
html, body{ height:100%; }
body{
  margin:0;
  background:var(--bg);
  color:var(--fg);
  font-family:'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

a{ color:inherit; text-decoration:none; }
a:hover{ opacity:.85; }

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:var(--bg);
  border-bottom:1px solid var(--line);
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  padding:14px 18px;
}

.brand-logo{
  width:36px;
  height:36px;
  object-fit:contain;
  display:block;
}

.brand-word{
  font-weight:800; /* Poppins ExtraBold */
  letter-spacing:-0.02em;
  text-transform:lowercase;
  font-size:18px;
  line-height:1;
}

.divider{
  height:1px;
  background:var(--line);
  width:100%;
}

.hero{
  width:100%;
  /* full-bleed: touches edges */
}

.hero-slide{
  position:relative;
  width:100%;
  height:72vh;
  min-height:520px;
  background:#111;
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  transform:translateZ(0);
  overflow:hidden;
}

/* pinned logo overlay (does not slide) */
.hero-logo{
  position:absolute;
  inset:0;
  display:grid;
  place-items:center;
  pointer-events:none;
}

.hero-logo img{
  width:min(320px, 60vw);
  height:auto;
  opacity:.92;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,.6));
}

.about{
  padding:64px 18px;
  text-align:center;
  max-width:920px;
  margin:0 auto;
}

.about-title{
  margin:0;
  font-weight:800;
  letter-spacing:-0.02em;
  text-transform:lowercase;
  font-size:44px;
  line-height:1.05;
}

.about-phonetic{
  margin-top:12px;
  font-weight:500; /* Poppins medium */
  font-size:18px;
  color:var(--muted);
}

.about-copy{
  margin:18px auto 0;
  max-width:760px;
  font-size:16px;
  line-height:1.8;
  color:var(--muted);
}

/* Tiles */
.tiles{
  display:grid;
  grid-template-columns:1fr;
  gap:16px;
  padding:24px 18px 34px;
  max-width:1100px;
  margin:0 auto;
}

@media (min-width: 820px){
  .tiles{ grid-template-columns:repeat(3, 1fr); }
}

.tile{
  position:relative;
  display:block;
  border:none;
overflow:hidden; /* square edges, no rounding */
  background:#000;
}

.tile img{
  display:block;
  width:100%;
  height:auto; /* show full table image */
}

.tile-label{
  position:absolute;
  inset:0;
  display:grid;
  place-items:center;
  font-weight:800; /* extrabold */
  text-transform:lowercase;
  letter-spacing:-0.02em;
  font-size:28px;
  text-shadow:0 10px 25px rgba(0,0,0,.7);
}

/* Mailing list */
.mailing{
  padding:56px 18px 64px;
  text-align:center;
  max-width:920px;
  margin:0 auto;
}

.mailing-title{
  margin:0;
  font-weight:800;
  letter-spacing:-0.02em;
  text-transform:lowercase;
  font-size:34px;
}

.mailing-copy{
  margin:14px auto 0;
  max-width:640px;
  color:var(--muted);
  line-height:1.8;
}

.mailing-form{
  margin:20px auto 0;
  display:flex;
  justify-content:center;
  gap:12px;
  flex-wrap:wrap;
}

.mailing-form input{
  width:min(420px, 86vw);
  padding:12px 14px;
  background:rgba(255,255,255,.06);
  color:var(--fg);
  border:none;
  font:inherit;
  outline:none;
}

.mailing-form input::placeholder{ color:var(--muted2); }

.mailing-button{
  background:transparent;
  color:var(--fg);
  border:none;           /* remove button box */
  font:inherit;
  font-weight:800;
  text-transform:lowercase;
  letter-spacing:-0.02em;
  padding:12px 4px;
  cursor:pointer;
  text-decoration:underline;
  text-underline-offset:6px;
}

.mailing-note{
  margin-top:14px;
  color:var(--muted2);
  font-size:13px;
}

/* Contact */
.contact{
  padding:44px 18px 54px;
  text-align:center;
}

.contact-line{
  font-size:16px;
  line-height:2;
  color:var(--muted);
}

/* Footer */
.footer{
  border-top:1px solid var(--line);
  padding:22px 18px 28px;
  text-align:center;
  background:var(--bg);
}

.socials{
  display:flex;
  justify-content:center;
  gap:16px;
  margin-bottom:12px;
}

.social{
  width:34px;
  height:34px;
  border:none;
display:grid;
  place-items:center;
}

.social svg{
  width:18px;
  height:18px;
  fill:var(--fg);
}

.footer-copy{
  color:var(--muted);
  font-size:13px;
  letter-spacing:0.02em;
}

/* Accessibility */
.sr-only{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}


/* Trademark styling */
.brand-word .word{ font-weight:800; }
.brand-word .tm{ font-weight:500; font-size:.8em; vertical-align:super; margin-left:2px; }
.about-title .word{ font-weight:800; }
.about-title .tm{ font-weight:500; font-size:.75em; vertical-align:super; margin-left:2px; }


/* Hero crossfade layers */
.hero-img{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  opacity:0;
  transition: opacity 900ms ease-in-out;
  will-change: opacity, transform;
}

/* subtle parallax-friendly transform */
.hero-img.parallax{
  transform: translateY(0px);
}

.hero-img.is-visible{ opacity:1; }

.tile:hover{
  transform: scale(1.03);
}


/* Services page hero (full-bleed, cropped to center) */
.page-hero{
  width:100%;
  height:52vh;
  min-height:420px;
  background:#111;
  background-size:cover;
  background-repeat:no-repeat;
  background-position:center 45%;
}

.page-hero--services{
  background-image:url('assets/services-hero.jpg');
}

/* Overlapping service tiles */
.service-tiles{
  width:100%;
  max-width:1180px;
  margin:0 auto;
  padding:0 18px 54px;
  display:grid;
  grid-template-columns:1fr;
  gap:16px;
  transform: translateY(-6vh); /* ~20% overlap feel */
}

@media (min-width: 860px){
  .service-tiles{
    grid-template-columns:repeat(3, 1fr);
    gap:18px;
    transform: translateY(-6vh);
  }
}

.service-tile{
  position:relative;
  overflow:hidden;
  background:transparent;
}

.service-tile__bg{
  position:relative;
  width:100%;
  aspect-ratio: 3 / 4;
  background-image:url('assets/table-trans.png');
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}

.service-tile__label{
  position:absolute;
  left:0;
  right:0;
  top:38%;
  transform: translateY(-50%);
  text-align:center;
  font-weight:800;
  text-transform:lowercase;
  letter-spacing:-0.02em;
  font-size:22px;
  color:var(--fg);
  text-shadow:0 10px 25px rgba(0,0,0,.75);
  pointer-events:none;
  padding:0 12px;
}

.service-tile__body{
  position:absolute;
  left:0;
  right:0;
  top:56%;
  padding:0 18px 18px;
  text-align:center;
  color:rgba(255,255,255,.80);
}

.service-tile__body p{
  margin:0;
  line-height:1.45;
  font-size:13px;
  max-width: 85%;
  margin-left:auto;
  margin-right:auto;
  display:-webkit-box;
  -webkit-line-clamp:4;
  -webkit-box-orient:vertical;
  overflow:hidden;
}


.service-tile__link{
  display:inline-block;
  margin-top:10px;
  font-weight:800;
  text-transform:lowercase;
  color:rgba(255,255,255,.92);
}
.service-tile__link .u{
  text-decoration:underline;
  text-underline-offset:6px;
}




/* Service "more…" modal */
.service-modal{
  position:fixed;
  inset:0;
  display:none;
  z-index:100;
}

.service-modal.is-open{ display:block; }

.service-modal__backdrop{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.55);
}

.service-modal__panel{
  position:relative;
  width:min(820px, 92vw);
  max-height:84vh;
  overflow:auto;
  margin:8vh auto 0;
  padding:22px 20px 18px;
  background:rgba(0,0,0,.55); /* transparent box */
  border:1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(10px);
}

.service-modal__close{
  position:absolute;
  top:10px;
  right:12px;
  background:transparent;
  border:none;
  color:rgba(255,255,255,.85);
  font-size:26px;
  line-height:1;
  cursor:pointer;
}

.service-modal__title{
  margin:0 0 14px;
  font-weight:800;
  text-transform:lowercase;
  letter-spacing:-0.02em;
  font-size:26px;
}

.service-modal__section{
  margin-top:14px;
}

.service-modal__label{
  font-weight:800;
  text-transform:lowercase;
  color:rgba(255,255,255,.92);
  letter-spacing:-0.01em;
  margin-bottom:6px;
}

.service-modal p{
  margin:0;
  color:rgba(255,255,255,.80);
  line-height:1.75;
}

.service-modal ul{
  margin:0;
  padding-left:18px;
  color:rgba(255,255,255,.80);
  line-height:1.8;
}

.service-modal li{ margin:0; }

/* Hover scale (does not affect fixed modals) */
.service-tile__bg{
  transition: transform 220ms ease;
}
.service-tile:hover .service-tile__bg{
  transform: scale(1.03);
}

/* Services Page – Book Now CTA */
.services-cta{
  margin:48px auto 72px;
  text-align:center;
}

.services-book-btn{
  display:inline-block;
  padding:14px 36px;
  font-weight:800;
  font-size:16px;
  text-transform:lowercase;
  background:#00c26f;
  color:#000;
  text-decoration:none;
}

.services-book-btn--modal{
  margin-top:10px;
}

.services-subtext{
  margin-top:10px;
  font-size:13px;
  color:rgba(255,255,255,.6);
}

.services-subtext a{
  color:rgba(255,255,255,.85);
  text-decoration:underline;
  text-underline-offset:4px;
}

/* Booking page */
.booking{
  max-width:560px;
  margin:70px auto 80px;
  padding:0 18px;
  text-align:center;
}

.booking-title{
  margin:0;
  font-weight:800;
  text-transform:lowercase;
  letter-spacing:-0.02em;
  font-size:34px;
}

.booking-intro{
  margin:12px auto 24px;
  color:rgba(255,255,255,.75);
  line-height:1.7;
  max-width:520px;
}

.booking-form{
  display:grid;
  gap:14px;
  text-align:left;
}

.booking-form label{
  display:flex;
  flex-direction:column;
  gap:6px;
  font-size:12px;
  text-transform:lowercase;
  color:rgba(255,255,255,.78);
}

.booking-form input,
.booking-form select,
.booking-form textarea{
  padding:10px 12px;
  background:rgba(255,255,255,.08);
  border:none;
  color:#fff;
  font:inherit;
  outline:none;
}

.booking-form button.services-book-btn{
  border:none;
  cursor:pointer;
  justify-self:center;
}

.service-modal__cta{ margin-top:16px; text-align:left; }
