:root {
  --red: #cf3e22;
  --dark: #111;
  --cream: #fffaf3;
  --ivory: #f6eee2;
  --muted: #6f645a;
  --line: #e8d8c8;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  background: var(--cream);
  color: var(--dark);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1120px, 92vw); margin: auto; }
.narrow { max-width: 760px; }

.site-header {
  height: 74px;
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--cream);
  border-bottom: 1px solid #ecdcc9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 36px;
}
.brand { font-weight: 950; line-height: .9; text-transform: uppercase; letter-spacing: -.5px; }
.brand span { font-size: 26px; color: var(--red); display: block; }
.brand small { font-size: 13px; letter-spacing: 2.4px; color: #221711; }
.desktop-nav { display: flex; gap: 22px; font-weight: 800; align-items: center; }
.desktop-nav a { font-size: 15px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 900;
  border: 0;
  cursor: pointer;
}
.primary { background: var(--red); color: white; }
.dark { background: #151515; color: white; }
.light { background: #fff; color: #151515; }
.big { padding: 17px 30px; }
.hamb { display: none; background: transparent; border: 0; flex-direction: column; gap: 4px; }
.hamb span { width: 24px; height: 2px; background: #111; }
.mobile-nav { display: none; }
.more { position: relative; }
.more > button { border: 0; background: transparent; font: inherit; font-weight: 800; cursor: pointer; padding: 0; }
.more > div {
  display: none;
  position: absolute;
  right: 0;
  top: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px;
  min-width: 150px;
  box-shadow: 0 14px 35px rgba(0, 0, 0, .12);
}
.more:hover > div,
.more:focus-within > div { display: grid; gap: 10px; }

.hero {
  min-height: 650px;
  position: relative;
  overflow: hidden;
  display: grid;
  align-items: center;
}
.restaurant-hero {
  background:
    radial-gradient(circle at 82% 30%, rgba(255, 213, 128, .28), transparent 26%),
    linear-gradient(115deg, rgba(17, 17, 17, .94) 0%, rgba(17, 17, 17, .86) 48%, rgba(207, 62, 34, .82) 100%),
    repeating-linear-gradient(135deg, rgba(255,255,255,.06) 0 2px, transparent 2px 18px);
  color: white;
  padding: 72px 7vw;
}
.restaurant-hero::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -160px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  border: 80px solid rgba(255, 250, 243, .12);
}
.hero-content { position: relative; z-index: 1; max-width: 720px; color: white; }
.hero h1 { font-size: clamp(54px, 8vw, 94px); line-height: .9; margin: 0 0 18px; font-weight: 950; letter-spacing: -4px; }
.hero p { font-size: 24px; margin: 0 0 30px; max-width: 640px; }
.eyebrow { color: var(--red); font-size: 13px; font-weight: 950; letter-spacing: 1.5px; margin: 0 0 14px; text-transform: uppercase; }
.restaurant-hero .eyebrow { color: #ffd59a; }
.hero-panel {
  position: absolute;
  z-index: 1;
  right: 7vw;
  bottom: 70px;
  width: min(360px, 34vw);
  background: rgba(255, 250, 243, .96);
  color: #1b1511;
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, .28);
}
.hero-panel span { color: var(--red); font-weight: 950; text-transform: uppercase; font-size: 13px; letter-spacing: 1px; }
.hero-panel strong { display: block; font-size: 30px; line-height: 1; margin: 12px 0; }
.hero-panel p { color: #3b3129; font-size: 16px; margin: 0; }

.section { padding: 72px 0; }
.section.compact { padding: 54px 0; }
.ivory { background: var(--ivory); }
h1,
.section h2 { font-size: 44px; line-height: 1; margin: 0 0 18px; letter-spacing: -1.5px; }
.section-top { display: flex; justify-content: space-between; align-items: end; gap: 24px; margin-bottom: 26px; }
.section-top a,
.text-link { font-weight: 900; color: var(--red); }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.feature-grid a {
  background: white;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
  font-weight: 900;
}
.text-cards a { padding: 24px; min-height: 160px; display: flex; flex-direction: column; justify-content: space-between; }
.feature-grid span { display: block; font-size: 24px; line-height: 1.05; }
.feature-grid small { color: var(--muted); font-size: 15px; line-height: 1.45; margin-top: 18px; }
.split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 50px; width: min(1120px, 92vw); margin: auto; }
.welcome-split { padding-top: 18px; }
.story-card { background: white; border: 1px solid var(--line); border-radius: 28px; padding: 34px; box-shadow: 0 18px 45px rgba(0,0,0,.07); }
.split p,
.section p { font-size: 18px; line-height: 1.6; color: #3b3129; }

.menu-page { background: #fff; }
.muted { color: var(--muted); }
.menu-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 28px; }
.menu-card { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 20px; transition: .18s; }
.menu-card:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(0, 0, 0, .08); }
.menu-card h3 { display: flex; justify-content: space-between; gap: 16px; margin: 3px 0 8px; font-size: 19px; }
.menu-card span { color: var(--red); }
.form-card { background: white; border: 1px solid var(--line); border-radius: 24px; padding: 26px; box-shadow: 0 12px 35px rgba(0, 0, 0, .06); max-width: 680px; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.cards > div { background: white; border: 1px solid var(--line); border-radius: 20px; padding: 24px; }
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 34px; }
.site-footer { background: #151515; color: white; padding: 45px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 170px 1fr auto; gap: 24px; align-items: start; }
.footer-brand small { color: #fff; }
.footer-grid div a { display: inline-block; margin: 0 14px 14px 0; color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.18); margin: 28px auto 0; padding-top: 18px; width: min(1120px, 92vw); display: flex; gap: 18px; flex-wrap: wrap; color: #d7cabe; }
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 18px; }

@media (max-width: 980px) {
  .site-header { padding: 0 18px; }
  .desktop-nav { display: none; }
  .hamb { display: flex; }
  .mobile-nav.open { display: grid; gap: 15px; padding: 18px; background: var(--cream); border-bottom: 1px solid var(--line); position: sticky; top: 74px; z-index: 40; }
  .mobile-nav .more > div { display: grid; position: static; box-shadow: none; margin-top: 10px; }
  .hero { min-height: 560px; }
  .restaurant-hero { padding: 54px 5vw 230px; }
  .hero h1 { letter-spacing: -2.5px; }
  .hero p { font-size: 20px; }
  .hero-panel { left: 5vw; right: 5vw; bottom: 34px; width: auto; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .split,
  .menu-grid,
  .contact-grid,
  .footer-grid,
  .cards { grid-template-columns: 1fr; }
  h1,
  .section h2 { font-size: 36px; }
}

@media (max-width: 560px) {
  .feature-grid { grid-template-columns: 1fr; }
  .section-top { align-items: flex-start; flex-direction: column; }
  .restaurant-hero { padding-bottom: 260px; }
  .hero-panel strong { font-size: 24px; }
}
.story-layout {
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
}
.menu-page h2 {
  margin-top: 42px;
}

.photo-hero {
  background:
    linear-gradient(105deg, rgba(17, 17, 17, .88) 0%, rgba(17, 17, 17, .70) 48%, rgba(207, 62, 34, .36) 100%),
    var(--hero-image) center/cover no-repeat;
}
.photo-hero::after { display: none; }
.photo-cards a { overflow: hidden; padding-bottom: 20px; }
.photo-cards img,
.menu-card img,
.gallery-grid img,
.page-hero img,
.rounded-photo,
.image-card img {
  width: 100%;
  object-fit: cover;
  background: var(--ivory);
}
.photo-cards img { height: 190px; border-radius: 22px 22px 0 0; margin-bottom: 18px; }
.photo-cards span,
.photo-cards small { padding: 0 20px; }
.photo-cards small { display: block; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery-grid img { height: 260px; border-radius: 24px; box-shadow: 0 14px 35px rgba(0, 0, 0, .10); }
.image-card { overflow: hidden; padding: 0; }
.image-card img { height: 300px; border-radius: 28px 28px 0 0; }
.image-card p,
.image-card h2 { margin-left: 34px; margin-right: 34px; }
.image-card p:last-child { margin-bottom: 34px; }
.page-hero { display: grid; grid-template-columns: 1fr .85fr; gap: 34px; align-items: center; margin-bottom: 36px; }
.page-hero img,
.rounded-photo { height: 390px; border-radius: 28px; box-shadow: 0 18px 45px rgba(0,0,0,.11); }
.menu-card { padding: 0; overflow: hidden; }
.menu-card img { height: 210px; }
.menu-card > div { padding: 20px; }
.contact-grid .rounded-photo { height: 250px; margin-bottom: 22px; }

@media (max-width: 980px) {
  .gallery-grid,
  .page-hero { grid-template-columns: 1fr; }
  .page-hero img { order: -1; height: 320px; }
}

@media (max-width: 560px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid img,
  .photo-cards img,
  .menu-card img { height: 220px; }
}


/* UJB full menu page */
.ujb-menu-page { background: #fffaf3; }
.ujb-menu-hero { background: #151515; color: white; padding: 42px 0; }
.ujb-menu-hero-inner { display: flex; justify-content: space-between; align-items: center; gap: 28px; }
.ujb-menu-hero h1 { font-size: clamp(36px, 5vw, 62px); margin: 0 0 10px; letter-spacing: -2px; line-height: .95; }
.ujb-menu-address { color: #f4d7c7; margin: 0 0 16px; font-size: 18px; }
.ujb-menu-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.ujb-menu-pills span { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.18); border-radius: 999px; padding: 9px 13px; font-weight: 850; color: #fff4ea; }
.ujb-menu-shell { display: grid; grid-template-columns: 230px 1fr; gap: 34px; align-items: start; padding-top: 42px; padding-bottom: 82px; }
.ujb-menu-sidebar { position: sticky; top: 96px; display: grid; gap: 8px; background: white; border: 1px solid var(--line); border-radius: 24px; padding: 14px; box-shadow: 0 14px 40px rgba(0,0,0,.06); }
.ujb-menu-sidebar a { border-radius: 999px; padding: 12px 14px; font-weight: 900; color: #2a211b; }
.ujb-menu-sidebar a:hover { background: var(--ivory); color: var(--red); }
.ujb-menu-section { scroll-margin-top: 100px; margin-bottom: 52px; }
.section-title-row { display: flex; align-items: end; justify-content: space-between; gap: 18px; margin-bottom: 18px; }
.section-title-row h2 { margin: 0 0 7px; font-size: 34px; letter-spacing: -1px; }
.section-title-row p { margin: 0; color: var(--muted); font-size: 17px; }
.ujb-menu-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.ujb-menu-card { display: grid; grid-template-columns: 158px 1fr; min-height: 158px; background: #fff; border: 1px solid var(--line); border-radius: 20px; overflow: hidden; box-shadow: 0 10px 28px rgba(0,0,0,.045); transition: transform .16s, box-shadow .16s; }
.ujb-menu-card:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(0,0,0,.08); }
.ujb-menu-thumb { background: var(--ivory); min-height: 158px; display: flex; align-items: center; justify-content: center; color: var(--muted); font-weight: 900; font-size: 13px; }
.ujb-menu-thumb img { width: 100%; height: 100%; min-height: 158px; object-fit: cover; }
.ujb-menu-thumb.text-only { background: linear-gradient(135deg, #fff8ef, #f0dfce); }
.ujb-menu-copy { padding: 17px 18px 16px; display: flex; flex-direction: column; gap: 8px; }
.ujb-menu-copy h3 { margin: 0; display: flex; gap: 12px; justify-content: space-between; align-items: baseline; font-size: 19px; line-height: 1.1; }
.ujb-menu-copy h3 span { color: var(--red); white-space: nowrap; }
.ujb-menu-copy p { margin: 0; color: #5c5048; font-size: 14.5px; line-height: 1.38; }
.ujb-menu-copy .text-link { margin-top: auto; font-size: 14px; }

@media (max-width: 980px) {
  .ujb-menu-hero-inner { align-items: flex-start; flex-direction: column; }
  .ujb-menu-shell { grid-template-columns: 1fr; }
  .ujb-menu-sidebar { position: static; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ujb-menu-list { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .ujb-menu-sidebar { display: flex; overflow-x: auto; padding: 10px; }
  .ujb-menu-sidebar a { white-space: nowrap; }
  .ujb-menu-card { grid-template-columns: 112px 1fr; min-height: 126px; }
  .ujb-menu-thumb,
  .ujb-menu-thumb img { min-height: 126px; }
  .ujb-menu-copy { padding: 13px; }
  .ujb-menu-copy h3 { font-size: 16px; }
  .ujb-menu-copy p { font-size: 13px; }
}

/* Owner-inspired homepage takeover refinements */
.owner-style-hero { min-height: 720px; background-position: center; }
.owner-style-hero .hero-content { max-width: 820px; }
.owner-style-hero h1 { max-width: 780px; text-shadow: 0 8px 34px rgba(0,0,0,.38); }
.owner-style-hero p:not(.eyebrow) { font-size: clamp(22px, 3vw, 34px); font-weight: 850; text-shadow: 0 4px 20px rgba(0,0,0,.35); }
.featured-strip { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 16px; }
.featured-strip a { background: #fff; border: 1px solid var(--line); border-radius: 18px; overflow: hidden; box-shadow: 0 10px 28px rgba(0,0,0,.06); font-weight: 950; }
.featured-strip img { height: 148px; width: 100%; object-fit: cover; }
.featured-strip span { display: block; padding: 14px; font-size: 17px; line-height: 1.1; }
.image-copy > img { width: 100%; height: 430px; object-fit: cover; border-radius: 30px; box-shadow: 0 18px 48px rgba(0,0,0,.12); }
.image-copy.flip > img { order: 2; }
.image-copy .button { margin-top: 8px; }
.order-band { background: #151515; color: white; }
.order-band .container { display: flex; justify-content: space-between; align-items: center; gap: 28px; }
.order-band p { color: #f0ded0; max-width: 760px; }
.visit-band { background: var(--red); color: white; text-align: center; }
.visit-band p { color: #fff8ef; max-width: 840px; margin-left: auto; margin-right: auto; }
.visit-hours { display: inline-flex; gap: 18px; align-items: center; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.22); border-radius: 999px; padding: 14px 22px; font-weight: 900; }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 24px; }
.review-grid article { background: white; border: 1px solid var(--line); border-radius: 24px; padding: 24px; box-shadow: 0 12px 32px rgba(0,0,0,.06); }
.review-grid strong { color: var(--red); }
.review-grid span { font-weight: 950; }
details { background: white; border: 1px solid var(--line); border-radius: 18px; padding: 18px 20px; margin: 12px 0; }
summary { cursor: pointer; font-weight: 950; font-size: 18px; }
.location-card { display: grid; grid-template-columns: 1fr .9fr; gap: 30px; align-items: center; background: white; border: 1px solid var(--line); border-radius: 30px; padding: 30px; box-shadow: 0 18px 45px rgba(0,0,0,.08); }
.location-card img { height: 330px; width: 100%; object-fit: cover; border-radius: 24px; }
.ujb-menu-list { gap: 12px; }
.ujb-menu-card { grid-template-columns: 132px 1fr; min-height: 132px; border-radius: 16px; }
.ujb-menu-thumb { min-height: 132px; }
.ujb-menu-thumb img { min-height: 132px; }
.ujb-menu-copy { padding: 13px 14px 12px; gap: 6px; }
.ujb-menu-copy h3 { font-size: 17px; }
.ujb-menu-copy p { font-size: 13.5px; line-height: 1.32; }
.ujb-menu-copy .text-link { font-size: 13px; }
.ujb-menu-sidebar { top: 90px; }
@media (max-width: 980px) {
  .featured-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .image-copy.flip > img { order: -1; }
  .image-copy > img { order: -1; height: 320px; }
  .order-band .container, .location-card { grid-template-columns: 1fr; display: grid; }
  .review-grid { grid-template-columns: 1fr; }
  .ujb-menu-sidebar { position: sticky; top: 74px; z-index: 10; display: flex; overflow-x: auto; border-radius: 0; margin: -42px calc(50% - 50vw) 10px; padding: 12px max(4vw, calc((100vw - 1120px)/2)); border-left: 0; border-right: 0; }
  .ujb-menu-sidebar a { white-space: nowrap; background: #fff8ef; }
}
@media (max-width: 560px) {
  .owner-style-hero { min-height: 610px; padding-bottom: 54px; }
  .featured-strip { display: flex; overflow-x: auto; padding-bottom: 8px; }
  .featured-strip a { min-width: 180px; }
  .visit-hours { border-radius: 20px; flex-direction: column; gap: 6px; }
  .ujb-menu-card { grid-template-columns: 104px 1fr; min-height: 116px; }
  .ujb-menu-thumb, .ujb-menu-thumb img { min-height: 116px; }
}

/* Owner.com homepage visual parity pass */
.owner-header { height: 70px; background: #fffaf3; padding-inline: 26px; }
.owner-header .brand span { font-size: 25px; }
.owner-header .desktop-nav { gap: 23px; }
.owner-header .button { padding: 14px 24px; }
.owner-home { background: #fffaf3; }
.owner-wide { width: min(1180px, 92vw); margin: 0 auto; }
.owner-narrow { width: min(820px, 92vw); margin: 0 auto; }
.owner-hero { position: relative; min-height: 670px; display: grid; align-items: center; background: var(--hero-image) center/cover no-repeat; color: #fff; overflow: hidden; }
.owner-hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.70) 0%, rgba(0,0,0,.45) 50%, rgba(0,0,0,.18) 100%); }
.owner-hero-inner { position: relative; z-index: 1; width: min(1180px, 92vw); margin: 0 auto; padding: 84px 0; }
.owner-hero h1 { font-size: clamp(56px, 8vw, 108px); line-height: .9; letter-spacing: -5px; max-width: 720px; margin: 0 0 22px; font-weight: 950; }
.owner-hero p { font-size: clamp(24px, 3.4vw, 40px); line-height: 1.05; max-width: 700px; margin: 0 0 34px; font-weight: 850; color: #fff; }
.owner-section { padding: 82px 0; }
.owner-featured { padding-top: 66px; }
.owner-section-head { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 28px; }
.owner-section-head h2, .owner-section h2 { font-size: clamp(40px, 5vw, 64px); line-height: .95; letter-spacing: -2.5px; margin: 0 0 16px; font-weight: 950; }
.owner-section-head a { color: var(--red); font-weight: 950; font-size: 18px; }
.owner-feature-scroll { display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 12px; scrollbar-width: none; }
.owner-feature-scroll::-webkit-scrollbar { display: none; }
.owner-feature-scroll a { min-width: 230px; background: #fff; border: 1px solid #e7d8c9; border-radius: 24px; overflow: hidden; scroll-snap-align: start; box-shadow: 0 14px 38px rgba(42, 30, 20, .08); font-weight: 950; font-size: 22px; }
.owner-feature-scroll img { width: 100%; height: 182px; object-fit: cover; }
.owner-feature-scroll span { display: block; padding: 18px 20px 22px; }
.owner-split { width: min(1120px, 92vw); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 58px; }
.owner-split img { width: 100%; height: 470px; border-radius: 34px; object-fit: cover; box-shadow: 0 22px 56px rgba(29, 21, 16, .13); }
.owner-split p { font-size: 20px; line-height: 1.62; color: #3f332b; margin: 0 0 24px; }
.owner-order-panel { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 0; width: min(1180px, 92vw); margin: 0 auto; padding: 0; overflow: hidden; border-radius: 36px; background: #151515; color: #fff; box-shadow: 0 24px 70px rgba(29, 21, 16, .16); }
.owner-order-photo img { height: 500px; width: 100%; object-fit: cover; }
.owner-order-copy { padding: 54px; }
.owner-order-copy h2 { color: #fff; }
.owner-order-copy p { color: #f2e0d0; font-size: 20px; line-height: 1.58; }
.owner-gallery-wrap { padding-top: 96px; }
.owner-gallery-head p { max-width: 680px; color: #4f443b; }
.owner-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.owner-gallery img { width: 100%; height: 320px; object-fit: cover; border-radius: 28px; box-shadow: 0 14px 34px rgba(29, 21, 16, .10); cursor: pointer; }
.owner-visit { background: #cf3e22; color: #fff; text-align: center; }
.owner-visit h2 { color: #fff; }
.owner-visit p { color: #fffaf3; font-size: 21px; line-height: 1.55; }
.owner-reviews { background: #fffaf3; }
.owner-review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 26px; }
.owner-review-grid article { min-height: 330px; display: flex; flex-direction: column; gap: 18px; background: #fff; border: 1px solid #e7d8c9; border-radius: 28px; padding: 28px; box-shadow: 0 14px 38px rgba(42, 30, 20, .08); }
.owner-review-grid article div { color: #cf3e22; font-weight: 950; font-size: 22px; letter-spacing: 2px; }
.owner-review-grid p { color: #3f332b; line-height: 1.55; }
.owner-review-grid a { color: #cf3e22; font-weight: 950; margin-top: auto; }
.owner-review-grid strong { font-size: 18px; }
.owner-featuring { background: #151515; color: #fff; text-align: center; padding: 72px 0; }
.owner-featuring h2 { color: #fff; }
.owner-feature-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 26px; }
.owner-feature-tags span { background: #2c2c2c; border: 1px solid rgba(255,255,255,.16); border-radius: 999px; padding: 14px 20px; font-weight: 950; }
.owner-faq { background: #f6eee2; }
.owner-faq details { background: #fff; border: 1px solid #e7d8c9; border-radius: 22px; padding: 22px 26px; margin: 14px 0; box-shadow: 0 10px 28px rgba(42, 30, 20, .06); }
.owner-faq summary { font-weight: 950; font-size: 20px; cursor: pointer; }
.owner-faq p { font-size: 17px; line-height: 1.55; color: #3f332b; }
.owner-location { background: #fffaf3; }
.owner-location-card { display: grid; grid-template-columns: .9fr 1.1fr; gap: 40px; align-items: stretch; background: #fff; border: 1px solid #e7d8c9; border-radius: 34px; padding: 30px; box-shadow: 0 18px 48px rgba(42, 30, 20, .10); }
.owner-location-card h2 { font-size: clamp(34px, 4vw, 54px); }
.owner-map img { width: 100%; height: 100%; min-height: 380px; object-fit: cover; border-radius: 26px; }
.owner-location-card ul { list-style: none; padding: 0; margin: 22px 0; display: grid; gap: 18px; font-size: 18px; line-height: 1.45; }
.owner-footer .footer-grid div a { font-weight: 850; }
@media (max-width: 1020px) {
  .owner-hero { min-height: 580px; }
  .owner-hero h1 { letter-spacing: -3px; }
  .owner-split, .owner-order-panel, .owner-location-card { grid-template-columns: 1fr; }
  .owner-split-reverse img { order: -1; }
  .owner-gallery, .owner-review-grid { grid-template-columns: 1fr 1fr; }
  .owner-order-photo img { height: 360px; }
  .owner-map img { height: 340px; min-height: 0; }
}
@media (max-width: 640px) {
  .owner-header { padding-inline: 18px; }
  .owner-hero { min-height: 560px; }
  .owner-section { padding: 58px 0; }
  .owner-section-head { align-items: start; flex-direction: column; }
  .owner-split img { height: 330px; }
  .owner-order-copy { padding: 30px; }
  .owner-gallery, .owner-review-grid { grid-template-columns: 1fr; }
  .owner-gallery img { height: 260px; }
  .owner-feature-scroll a { min-width: 200px; }
  .owner-feature-scroll img { height: 160px; }
}

/* Delivery CTA pass */
.footer-grid > .button.light { justify-self: end; }
.ujb-menu-pills a { background: rgba(207,62,34,.72); border: 1px solid rgba(255,255,255,.18); border-radius: 999px; padding: 9px 13px; font-weight: 850; color: #fff4ea; }
.owner-feature-tags a { background: var(--red); border: 1px solid rgba(255,255,255,.16); border-radius: 999px; padding: 14px 20px; font-weight: 950; color: #fff; }

/* Owner.com top-header parity fix */
.owner-header {
  height: 142px;
  background: #0f0f0f;
  border-bottom: 0;
  padding: 0 clamp(36px, 6vw, 126px);
  position: sticky;
  top: 0;
  z-index: 60;
}
.owner-logo {
  display: flex;
  align-items: center;
  min-width: clamp(330px, 27vw, 520px);
}
.owner-logo img {
  width: clamp(340px, 25vw, 510px);
  height: auto;
  max-height: 104px;
  object-fit: contain;
}
.owner-header .desktop-nav {
  gap: clamp(28px, 2.45vw, 48px);
  align-items: center;
  color: #e7e7e7;
  font-size: 20px;
  font-weight: 650;
}
.owner-header .desktop-nav > a:not(.button),
.owner-header .more > button {
  color: #e2e2e2;
  font-size: clamp(18px, 1.18vw, 24px);
  font-weight: 650;
  letter-spacing: -0.02em;
}
.owner-header .more > button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #e2e2e2;
}
.owner-header .more > button::after {
  content: "⌄";
  font-size: 18px;
  line-height: 1;
  transform: translateY(-1px);
}
.owner-header .more > div {
  top: 34px;
  background: #171717;
  border-color: rgba(255,255,255,.12);
  color: #f6f6f6;
  border-radius: 14px;
  min-width: 190px;
}
.owner-header .button.primary {
  background: #e12b2b;
  color: #fff;
  border-radius: 20px;
  padding: 22px 28px;
  font-size: clamp(18px, 1.12vw, 23px);
  font-weight: 800;
  min-height: 62px;
}
.owner-header .order-link::after {
  content: "›";
  font-size: 36px;
  line-height: .5;
  margin-left: 13px;
  font-weight: 400;
}
.owner-header .hamb span { background: #fff; }
.owner-hero {
  min-height: 690px;
  background-position: center top;
}
.owner-hero-shade {
  background: linear-gradient(90deg, rgba(0,0,0,.68) 0%, rgba(0,0,0,.40) 45%, rgba(0,0,0,.14) 100%);
}
@media (max-width: 1120px) {
  .owner-header { height: 104px; padding-inline: 28px; }
  .owner-logo { min-width: 250px; }
  .owner-logo img { width: 260px; max-height: 72px; }
  .owner-header .desktop-nav { gap: 20px; }
  .owner-header .desktop-nav > a:not(.button), .owner-header .more > button { font-size: 16px; }
  .owner-header .button.primary { padding: 15px 22px; min-height: 52px; border-radius: 18px; font-size: 16px; }
  .mobile-nav.open { top: 104px; }
}
@media (max-width: 980px) {
  .owner-header { height: 84px; }
  .owner-logo { min-width: 0; }
  .owner-logo img { width: 220px; max-height: 58px; }
  .mobile-nav.open { background: #0f0f0f; color: #fff; border-bottom-color: rgba(255,255,255,.12); top: 84px; }
}
@media (max-width: 560px) {
  .owner-header { height: 76px; padding-inline: 18px; }
  .owner-logo img { width: 180px; }
  .mobile-nav.open { top: 76px; }
}

/* UJB HERO FINAL ALIGNMENT FIX */
.owner-hero {
  min-height: 760px !important;
  height: calc(100vh - 112px) !important;
  max-height: 820px !important;
  position: relative !important;
  overflow: hidden !important;
}

.owner-hero-slides,
.owner-hero-slide {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
}

.owner-hero-slide {
  object-fit: cover !important;
  object-position: center center !important;
}

.owner-hero-shade {
  position: absolute !important;
  inset: 0 !important;
  z-index: 2 !important;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.62) 0%,
    rgba(0, 0, 0, 0.48) 38%,
    rgba(0, 0, 0, 0.24) 72%,
    rgba(0, 0, 0, 0.18) 100%
  ) !important;
}

.owner-hero-inner {
  position: absolute !important;
  z-index: 3 !important;
  left: clamp(72px, 6vw, 108px) !important;
  bottom: clamp(58px, 8vh, 92px) !important;
  top: auto !important;
  right: auto !important;
  transform: none !important;
  width: min(960px, calc(100vw - 180px)) !important;
  max-width: 960px !important;
  padding: 0 !important;
  margin: 0 !important;
  display: block !important;
  text-align: left !important;
}

.owner-hero-eyebrow {
  margin: 0 0 24px !important;
  color: #fff !important;
  font-family: Inter, Arial, sans-serif !important;
  font-size: clamp(24px, 1.8vw, 32px) !important;
  line-height: 1.1 !important;
  font-weight: 900 !important;
  letter-spacing: -0.9px !important;
  text-transform: none !important;
}

.owner-hero-inner h1 {
  margin: 0 0 34px !important;
  color: #fff !important;
  width: min(940px, calc(100vw - 180px)) !important;
  max-width: 940px !important;
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: clamp(54px, 5vw, 82px) !important;
  line-height: 1.03 !important;
  font-weight: 700 !important;
  letter-spacing: -2.8px !important;
  text-transform: none !important;
}

.owner-hero-inner .button,
.owner-hero-inner .button.big {
  margin-top: 0 !important;
  padding: 18px 28px !important;
  border-radius: 12px !important;
  font-family: Inter, Arial, sans-serif !important;
  font-size: 18px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
}

.owner-hero-controls {
  z-index: 5 !important;
  right: 64px !important;
  bottom: 48px !important;
}

@media (max-width: 980px) {
  .owner-hero {
    min-height: 650px !important;
    height: 76vh !important;
  }

  .owner-hero-inner {
    left: 32px !important;
    bottom: 48px !important;
    width: calc(100vw - 64px) !important;
    max-width: none !important;
  }

  .owner-hero-inner h1 {
    width: 100% !important;
    max-width: 720px !important;
    font-size: clamp(44px, 8vw, 64px) !important;
    letter-spacing: -2px !important;
  }

  .owner-hero-eyebrow {
    font-size: 23px !important;
  }
}

@media (max-width: 560px) {
  .owner-hero {
    min-height: 600px !important;
    height: 74vh !important;
  }

  .owner-hero-inner {
    left: 22px !important;
    bottom: 38px !important;
    width: calc(100vw - 44px) !important;
  }

  .owner-hero-inner h1 {
    font-size: clamp(38px, 12vw, 50px) !important;
    line-height: 1.04 !important;
    letter-spacing: -1.5px !important;
    margin-bottom: 24px !important;
  }

  .owner-hero-eyebrow {
    font-size: 20px !important;
    margin-bottom: 16px !important;
  }

  .owner-hero-controls {
    right: 20px !important;
    bottom: 22px !important;
  }
}
/* END UJB HERO FINAL ALIGNMENT FIX */

