/* Daal Roti — Oakville standalone clone */

:root {
  --orange: #f37021;
  --orange-deep: #e96510;
  --orange-accent: #e37739;
  --orange-bright: #f26522;
  --ink: #131313;
  --beige: #ece9e4;
  --gray: #555;
  --gray-light: #777;
  --serif: "Times New Roman", Times, serif;
  --sans: "Montserrat", Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 15px;
  color: #000;
  background: #f6f5f3 url("../img/lines-bg.jpg") repeat;
  background-size: 189px;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 20px; }

/* page content wrapper — full width; body stripes show through transparent sections */
.page-wrap { overflow: hidden; }

/* ---------- top bar ---------- */
.topbar {
  background: #0a0a0a url("../img/top-bar-1-1.jpg") repeat-x center;
  background-size: auto 100%;
  padding: 20px 18px;
  display: flex;
  gap: 16px;
  align-items: center;
}
.topbar a { color: #fff; opacity: .9; line-height: 0; }
.topbar a:hover { opacity: 1; color: var(--orange); }
.topbar svg { width: 15px; height: 15px; fill: currentColor; }

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #131313 url("../img/130134-2.jpg") repeat center;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.header-inner {
  width: calc(100% - 200px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.brand { display: block; padding: 28px 0; }
.brand img { width: 185px; height: auto; transition: width .25s ease; }
.site-header.compact .brand img { width: 110px; }
.main-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto;
}
.main-nav a {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  padding: 37px 7px;
  margin: 0 12px;
}
.site-header.compact .main-nav a { padding-top: 16px; padding-bottom: 16px; }
.site-header.compact .brand { padding: 8px 0; }
.main-nav a:hover { color: var(--orange); }
.btn-franchise {
  margin-left: 0;
  background: var(--orange);
  color: #fff;
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 24px;
  padding: 13px 24px;
}
.btn-franchise:hover { background: #000; color: #fff; }
/* below ~1700px the live header wraps to two rows: logo alone, then nav + franchise */
@media (max-width: 1700px) {
  .brand { flex-basis: 100%; padding: 12px 0 0; }
  .brand img { width: 160px; }
  .main-nav { margin: 0 0 0 40px; }
  .main-nav a { padding-top: 26px; padding-bottom: 26px; }
  .btn-franchise { margin-left: auto; }
}

/* ---------- announcement ---------- */
.announce-gap { height: 100px; background: #fff; }
.zigzag {
  height: 40px;
  background: #fff url("../img/istockphoto-1160720443-612x612-1.jpg") repeat 0 0;
}
.announce {
  background: var(--orange);
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  letter-spacing: .3px;
  text-align: center;
  padding: 10px 16px;
  animation: blinker 1s linear infinite;
}
@keyframes blinker { 10% { opacity: .55; } }

/* ---------- hero (index) ---------- */
.hero { background: transparent; padding: 115px 0 0; }
.hero-head { position: relative; max-width: 1170px; margin: 0 auto; }
.hero-eyebrow {
  text-align: center;
  font-family: var(--serif);
  font-size: 16px;
  color: #000;
  margin-bottom: 14px;
}
.hero-title {
  text-align: center;
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 6px;
  color: #000;
}
.btn-order-hero {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: var(--orange);
  color: #fff;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-align: center;
  padding: 12px 22px;
  width: 160px;
  line-height: 1.5;
}
.btn-order-hero:hover { background: #f9863d; }

/* ---------- carousel ---------- */
.carousel-section { background: transparent; padding: 53px 0 24px; }
.carousel {
  position: relative;
  max-width: 1170px;
  margin: 0 auto;
  overflow: hidden;
}
.carousel-track {
  display: flex;
  transition: transform .6s ease;
}
.carousel-track img {
  flex: 0 0 100%;
  width: 100%;
}
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: 0;
  color: #fff;
  font-size: 42px;
  font-family: var(--serif);
  cursor: pointer;
  padding: 0 14px;
  text-shadow: 0 1px 4px rgba(0,0,0,.5);
  z-index: 2;
}
.carousel-arrow.prev { left: 6px; }
.carousel-arrow.next { right: 6px; }
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  padding-top: 18px;
}
.carousel-dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 0;
  background: #c7c2ba;
  cursor: pointer;
  padding: 0;
}
.carousel-dots button.active { background: #3a3a3a; }

/* ---------- quick buttons ---------- */
.quick-buttons { background: transparent; padding: 8px 0 168px; }
.quick-buttons .row {
  max-width: 1170px;
  margin: 0 auto;
  display: flex;
  gap: 50px;
  padding: 0 10px;
}
.btn-outline {
  flex: 1;
  border: 1px solid #000;
  font-family: var(--serif);
  font-size: 18px;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-align: center;
  color: #000;
  padding: 19px 10px;
  transition: background .2s, color .2s;
}
.btn-outline:hover { background: var(--orange); border-color: var(--orange); color: #fff; }
.btn-outline.inline { display: inline-block; flex: 0 0 auto; padding: 15px 36px; }

/* ---------- location (index) ---------- */
.location-section {
  display: flex;
  align-items: stretch;
  max-width: 1170px;
  margin: 0 auto;
}
.location-section .loc-img { flex: 0 0 570px; max-width: 570px; }
.location-section .loc-img img { width: 100%; height: 100%; object-fit: cover; }
.loc-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-family: var(--serif);
  padding: 60px 40px;
}
.loc-info .loc-city,
.loc-city {
  color: var(--orange-accent);
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 26px;
}
.loc-info .loc-address {
  font-size: 19px;
  line-height: 1.55;
  margin-bottom: 18px;
}
.loc-info .loc-contact { font-size: 16px; line-height: 1.8; margin-bottom: 34px; }
.loc-info .loc-contact a { color: #000; }
.loc-info .loc-contact a:hover { color: var(--orange); }
.loc-divider { width: 40px; margin: 0 auto 18px; }
.loc-hours-title {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.loc-hours { font-size: 15px; letter-spacing: 1px; line-height: 2; color: #1c1c1c; }

/* ---------- features (index) ---------- */
.features-section { background: transparent; padding: 193px 0 250px; }
.features-title {
  text-align: center;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 5px;
  margin-bottom: 58px;
}
.features-row {
  max-width: 1170px;
  margin: 0 auto;
  display: flex;
  gap: 30px;
  padding: 0 15px;
}
.feature {
  flex: 1;
  text-align: center;
  font-family: var(--serif);
}
.feature img { width: 100px; margin: 0 auto 26px; }
.feature h4 {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: .5px;
  margin-bottom: 8px;
}
.feature p { font-size: 16px; color: var(--gray-light); }

/* ---------- private dining (index) ---------- */
.private-section {
  background: var(--beige) url("../img/bg-private-dining-section-scaled.jpg") center/cover;
  padding: 270px 0;
}
.private-row {
  max-width: 1170px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 0 15px;
}
.private-col { flex: 1; }
.private-col .pd-photo { max-width: 400px; margin: 0 auto 50px; }
.private-text {
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.75;
  text-align: center;
  max-width: 470px;
  margin: 0 auto 54px;
}
.private-cta { display: flex; justify-content: center; }
.private-cta .btn-outline { flex: 0 0 auto; padding: 16px 42px; font-size: 17px; }
.private-col .kababs { width: 100%; }

/* ---------- menu (index) ---------- */
.menu-area { background: #eceae7; }
.menu-head {
  background: #eceae7 url("../img/lines-bg.jpg") repeat 0 0;
  padding-top: 60px;
}
.menu-head img { width: 90%; max-width: 1254px; margin: 0 0 0 10%; }
.menu-columns {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 0;
  padding: 50px 15px 30px;
}
.menu-col { flex: 1; min-width: 0; }
.menu-cat-img { max-width: 480px; margin: 30px auto 24px; }
.menu-section { padding: 20px 10px; max-width: 480px; margin: auto; }
.menu-item {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 15px;
  font-family: var(--serif);
}
.item-name {
  font-weight: 700;
  flex: 1 1 60%;
  font-size: 16px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #000;
}
.item-price {
  font-weight: 700;
  flex: 0 0 auto;
  text-align: right;
  font-size: 16px;
  color: var(--gray);
}
.item-description {
  flex: 1 1 100%;
  font-style: normal;
  color: var(--gray);
  letter-spacing: 1px;
  margin-top: .2rem;
  font-size: 14px;
  line-height: 1.6;
}

.menu-foot { text-align: center; padding: 30px 15px 100px; }
.btn-drinks {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 15px 38px;
  margin-bottom: 30px;
}
.btn-drinks:hover { background: #f9863d; }
.menu-note {
  font-family: var(--serif);
  font-size: 16px;
  color: #333;
  letter-spacing: .5px;
}

/* ---------- delivery (index) ---------- */
.delivery-section {
  background: transparent;
  text-align: center;
  padding: 90px 15px 90px;
}
.delivery-section h3 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 30px;
}
.btn-order-big {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 16px 46px;
  margin-bottom: 14px;
  border: 0;
  cursor: pointer;
}
.btn-order-big:hover { background: #f9863d; }
.coming-soon {
  font-family: var(--serif);
  font-size: 15px;
  letter-spacing: 3px;
  color: var(--gray);
  margin-bottom: 36px;
}
.delivery-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 34px;
}
.delivery-logos img { width: 130px; }

/* ---------- catering CTA (index) ---------- */
.catering-section { background: #fff; padding: 0; }
.catering-row {
  width: 100%;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0;
}
.catering-video-col { flex: 0 0 66.67%; max-width: 66.67%; }
.catering-video-col video { width: 100%; height: auto; display: block; }
.catering-info-col { flex: 0 0 33.33%; max-width: 33.33%; text-align: center; padding: 40px 20px; }
.catering-info-col img { margin: 0 auto 22px; max-width: 400px; width: 100%; }
.catering-section p {
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.7;
  text-align: center;
  max-width: 400px;
  margin: 0 auto 24px;
}
.book-catering-btn {
  background-color: #000;
  color: #fff;
  border: 2px dotted #fff;
  box-shadow: 0 0 0 4px #000;
  outline: 4px solid #000;
  outline-offset: 4px;
  margin: 14px 5px 5px;
  padding: 12px 24px;
  font-size: 18px;
  font-family: var(--serif);
  text-transform: uppercase;
  letter-spacing: 3px;
  border-radius: 0;
  cursor: pointer;
  transition: background-color .3s ease;
}
.book-catering-btn:hover { background-color: #414141; }

/* ---------- buffet pricing ---------- */
.buffet-page {
  background: #444 url("../img/buffet-copy-scaled.jpg") center/cover;
  padding: 254px 20px 70px;
}
.buffet-panel {
  max-width: 600px;
  margin-left: auto;
  margin-right: 10%;
  background-color: rgba(26, 26, 26, .92);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #fff;
  text-align: center;
  padding: 44px 20px 30px;
}
.buffet-panel h1 {
  font-size: 48px;
  line-height: 1;
  color: var(--orange-bright);
  letter-spacing: 2px;
  font-weight: 700;
}
.buffet-panel h2 { font-size: 24px; margin: 5px 0; color: #fff; font-weight: 700; }
.buffet-hours { font-size: 14px; color: #ccc; margin-bottom: 34px; }
.buffet-cards { display: flex; gap: 15px; margin-bottom: 92px; }
.buffet-card {
  flex: 1;
  text-align: center;
  background-color: #2a2a2a;
  border-radius: 8px;
  padding: 15px;
}
.buffet-chip {
  background-color: var(--orange-bright);
  color: #fff;
  padding: 4px 0;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.buffet-days { font-size: 11px; color: #aaa; margin-bottom: 8px; min-height: 14px; }
.buffet-price { font-size: 28px; font-weight: 700; }
.buffet-price sup { font-size: 14px; }
.buffet-tax { font-size: 10px; letter-spacing: 2px; color: #888; margin-top: 4px; }
.buffet-exec-title { font-size: 24px; font-weight: 700; letter-spacing: .02em; margin-bottom: 12px; }
.buffet-exec-sub { font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.buffet-exec-note { font-size: 12px; color: #ccc; margin-bottom: 56px; }
.buffet-loc-name { font-size: 16px; font-weight: 700; color: #f60; margin: 129px 0 8px; }
.buffet-loc { color: #fff; font-size: 16px; line-height: 1.4; }
.buffet-loc a { color: #fff; }
.buffet-call { font-size: 14px; color: #ddd; margin-top: 18px; }
.buffet-call a { color: var(--orange-bright); font-weight: 700; }
.buffet-panel .panel-logo { width: 120px; margin: 44px auto 10px; }
.buffet-copy-line { font-size: 10px; color: #888; }

/* ---------- catering oakville ----------
   One full-bleed stage over the food photo (live: we-cater left at x=30,
   translucent black box right = exactly the right half minus 30px margin). */
.catoak-stage {
  background: #2b1a12 url("../img/menu-image-scaled.jpg") left top no-repeat;
  display: flex;
  align-items: flex-start;
  padding: 0 30px 195px;
}
.catoak-left {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 124px 0 0;
}
.catoak-left .we-cater { width: 100%; }
.catoak-city {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #fff;
  margin: 12px 0 44px;
}
.btn-packages {
  display: inline-block;
  background: #fff;
  color: #000;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 17px 26px;
}
.btn-packages:hover { background: var(--orange); color: #fff; }
.catoak-box {
  flex: 1;
  margin-top: 224px;
  background: rgba(0, 0, 0, .6);
  padding: 95px 97px;
}
.box-call {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.85;
  color: #fff;
  text-align: center;
  margin-bottom: 2px;
}
.box-phone {
  display: block;
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 700;
  color: #ea6611;
  text-align: center;
  margin-bottom: 18px;
}
.catoak-form { margin-top: 64px; }
.catoak-form .grid2 { display: flex; gap: 10px; }
.catoak-form .grid2 > * { flex: 1; min-width: 0; }
.catoak-form .grid-spacer { visibility: hidden; }
.catoak-form .catoak-type {
  width: 100%;
  font-family: var(--sans);
  font-size: 13px;
  color: #555;
  background: #f7f7f7;
  border: 0;
  height: 45px;
  padding: 0 14px;
  margin-bottom: 10px;
}
.catoak-form input, .catoak-form select, .catoak-form textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 13px;
  color: #333;
  background: #f7f7f7;
  border: 0;
  height: 45px;
  padding: 0 14px;
  margin-bottom: 10px;
}
.catoak-form textarea {
  height: auto;
  min-height: 185px;
  background: #fff;
  padding: 12px 14px;
  resize: vertical;
}
.box-note {
  font-family: var(--sans);
  font-size: 13px;
  color: #fff;
  margin: 8px 0 12px;
}
.form-bar {
  background: #1f1f1f;
  color: #fff;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 14px;
  margin-bottom: 10px;
}
.btn-send {
  background: var(--orange);
  color: #fff;
  border: 0;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 30px;
  margin-top: 6px;
}
.btn-send:hover { background: #f9863d; }
.catoak-form .form-success { color: #7ee2a8; font-family: var(--sans); font-size: 14px; margin-top: 14px; }

/* ---------- forms ---------- */
.form-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 26px;
  text-align: center;
}
.std-form { text-align: left; font-family: var(--serif); }
.std-form label { display: block; font-size: 15px; letter-spacing: 1px; margin: 16px 0 6px; }
.std-form input[type="text"], .std-form input[type="email"], .std-form input[type="tel"],
.std-form select, .std-form textarea {
  width: 100%;
  font-family: var(--serif);
  font-size: 16px;
  padding: 12px 14px;
  border: 1px solid #bbb;
  background: #fff;
  margin-bottom: 12px;
}
.std-form textarea { resize: vertical; }
.std-form .check-label { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; line-height: 1.5; }
.std-form .check-label input { width: auto; margin-top: 3px; }
.std-form button { border: 0; cursor: pointer; margin-top: 20px; }
.form-success { color: #2ea043; font-size: 16px; margin-top: 18px; font-style: italic; }

/* dark form variant (catering oakville / franchise) */
.std-form.on-dark label { color: #fff; font-size: 13px; }
.std-form.on-dark input, .std-form.on-dark select, .std-form.on-dark textarea {
  background: rgba(255, 255, 255, .95);
  border: 1px solid #444;
}
.std-form.on-dark .check-label { color: #ddd; }
.std-form.on-dark .form-success { color: #7ee2a8; }

/* ---------- contact ---------- */
.sign-hero img { width: 100%; }
.contact-title-wrap { background: #fff; padding: 45px 30px 40px; }
.contact-title-wrap img { width: 100%; max-width: none; margin: 0 auto; }
.contact-section { background: #fff; padding: 20px 30px 460px; }
.contact-row {
  margin: 0 auto;
  display: flex;
  gap: 30px;
  align-items: flex-start;
}
.contact-col { min-width: 0; font-family: var(--serif); }
.col-building { flex: 0 0 18%; }
.col-factory { flex: 0 0 29%; }
.col-addresses { flex: 0 0 17%; }
.col-form { flex: 0 0 380px; margin-left: auto; }
.col-form button { font-size: 13px; padding: 13px 26px; }
.contact-block { margin-bottom: 36px; }
.contact-block .loc-city { font-size: 18px; letter-spacing: 1px; margin-bottom: 12px; }
.contact-block p { font-size: 15px; line-height: 1.7; margin-bottom: 8px; }
.contact-block a { color: #000; }
.contact-block a:hover { color: var(--orange); }
.divider-strip {
  height: 18px;
  background: url("../img/divider-daal-roti-separator-1.png") repeat-x center;
  background-size: auto 100%;
}

/* ---------- careers ---------- */
.careers-section { background: #fff; padding: 80px 15px 80px; }
.careers-row { max-width: 1170px; margin: 0 auto; display: flex; gap: 30px; align-items: flex-start; }
.careers-col { flex: 1; min-width: 0; font-family: var(--sans); color: #858585; font-size: 16px; line-height: 1.6; }
.careers-col:first-child { flex: 0 0 570px; }
.careers-hero { background: #fff; padding-top: 80px; }
.careers-col .std-form { font-family: var(--sans); }
.careers-col .std-form label { font-size: 16px; color: #858585; letter-spacing: 0; margin: 0 0 6px; font-weight: 400; }
.careers-col .std-form input[type="text"], .careers-col .std-form input[type="email"], .careers-col .std-form input[type="tel"] {
  width: 366px; max-width: 100%; height: 45px; padding: 0 20px;
  background: #f7f7f7; border: 1px solid transparent; color: #555;
  font-family: var(--sans); font-size: 16px; margin-bottom: 20px;
}
.careers-col .std-form select {
  width: auto; min-width: 207px; height: 45px; padding: 0 20px;
  background: #f7f7f7; border: 1px solid transparent; color: #555; margin-bottom: 20px;
}
.careers-col .std-form textarea {
  width: 376px; max-width: 100%; padding: 10px 20px;
  background: #f7f7f7; border: 1px solid transparent; color: #555; margin-bottom: 20px;
}
.careers-col .std-form button {
  font-family: Arial, sans-serif; font-size: 13px; font-weight: 700; text-transform: uppercase;
  line-height: 20px; padding: 10.5px 30px; letter-spacing: 0;
  background: var(--orange); color: #fff; border: 2px solid transparent; margin: 0;
}
.careers-col h3 { font-size: 24px; font-weight: 700; margin-bottom: 20px; color: #000; line-height: 1.2; }
.careers-col > img { margin: 0 auto; }

/* ---------- franchise ---------- */
.franchise-band { background: var(--orange-deep); padding: 220px 0 100px; }
.franchise-band .container { max-width: 1170px; padding: 0 15px; }
.franchise-band h2 {
  font-family: var(--sans);
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #fff;
}
.franchise-band p { font-family: var(--sans); font-size: 20px; color: #fff; line-height: 1.6; }
.franchise-section {
  background: var(--beige) url("../img/bg-private-dining-section-scaled.jpg") repeat 0 0;
  padding: 125px 15px 0;
}
.franchise-row { max-width: 1170px; margin: 0 auto; display: flex; gap: 30px; align-items: flex-start; }
.franchise-col { flex: 1; min-width: 0; }
.franchise-col > img { width: 100%; max-width: none; margin: 0; }
.franchise-ready {
  background: #0a0a0a;
  color: #fff;
  text-align: center;
  padding: 35px 20px;
  margin-bottom: 0;
  font-family: var(--sans);
}
.franchise-ready h3 { font-size: 24px; font-weight: 700; margin-bottom: 6px; }
.franchise-ready p { font-size: 16px; color: #fff; }
.franchise-card {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}
.franchise-form { font-family: var(--sans); }
.franchise-form label { font-weight: 700; font-size: 15px; letter-spacing: 0; margin: 15px 0 5px; color: #333; font-family: var(--sans); }
.franchise-form input[type="text"], .franchise-form input[type="email"],
.franchise-form input[type="tel"], .franchise-form select {
  height: 45px; padding: 10px; border: 1px solid #ccc; border-radius: 4px;
  background: #f7f7f7; color: #555; font-family: var(--sans);
}
.franchise-form textarea { padding: 10px; border: 1px solid #ccc; border-radius: 4px; background: #f7f7f7; color: #555; font-family: var(--sans); }
.franchise-form .check-label { font-weight: 400; margin: 20px 0; font-family: var(--sans); }
.franchise-form button.btn-order-big.wide {
  font-family: var(--sans); font-size: 16px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0; padding: 12px; border-radius: 4px; background: var(--orange-deep); margin-top: 10px;
}
.fr-app-title {
  font-family: var(--sans);
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin: 0 0 20px;
}
.btn-order-big.wide { width: 100%; }

/* ---------- about us ---------- */
.about-hero { background: #fff; padding-top: 200px; }
.about-hero > img { display: block; width: calc(100% - 270px); max-width: 1500px; margin: 0 auto; }
.about-hero .gold-medal { display: block; width: 150px; margin: 50px auto; }
.about-legacy {
  background: #f9f9f9 url("../img/bg-private-dining-section-scaled.jpg") repeat 0 0;
  padding: 0;
}
.about-legacy .about-text { padding-top: 100px; padding-bottom: 50px; }
.about-row {
  max-width: 1170px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 56px;
  padding: 0 15px;
}
.about-col { flex: 1; min-width: 0; }
.about-col > img { margin: 0 auto; }
.about-text { font-family: Arial, Helvetica, sans-serif; text-align: center; }
.about-text .title-img { max-width: 100%; margin: 0 auto 50px; }
.about-caps { font-size: clamp(13px, 2vw, 14px); color: #000; letter-spacing: 2px; text-transform: uppercase; line-height: 1.9; margin-bottom: 30px; }
.about-divider { height: 45px; background: url("../img/divider-daal-roti-separator-1.png") repeat-x 0 0; }
.about-tonight { font-weight: 700; letter-spacing: 3px; margin-bottom: 30px; }
.about-vision {
  background: #fff url("../img/lines-bg.jpg") repeat 0 0;
  color: #000;
  padding: 60px 0 0;
}
.about-vision .about-row, .about-factory .about-row { width: 100%; max-width: none; gap: 0; padding: 0; }
.about-vision .photo-col { flex: 0 0 50%; background: #000; padding: 50px 15px 100px; }
.about-vision .about-text { flex: 0 0 41.66%; padding-left: 8%; }
.about-vision .about-text p { color: #000; font-size: 15px; line-height: 1.85; margin-bottom: 20px; }
.about-vision .title-img { max-width: 400px; }
.signature { max-width: 250px; margin: 50px auto 0; }
.about-factory {
  background: #fff url("../img/lines-bg.jpg") repeat 0 0;
  color: #000;
  padding: 60px 0 0;
}
.about-factory .about-text { flex: 0 0 41.66%; padding: 0 4% 0 8%; }
.about-factory .photo-col { flex: 0 0 50%; padding: 50px 15px 100px; }
.about-factory .about-text p { color: #000; font-size: 15px; line-height: 1.85; margin-bottom: 24px; }
.about-factory .title-img { max-width: 450px; }
.about-factory hr { border: 0; border-top: 1px solid #ddd; margin: 30px 0; }
.about-factory .loc-city { color: #ff6600; font-weight: 700; font-size: 15px; letter-spacing: 0; }
.about-factory a { color: #000; text-decoration: none; }
.about-factory a:hover { text-decoration: underline; }

/* ---------- gallery (crave shots) ---------- */
.gallery-grid {
  max-width: 1170px;
  margin: 0 auto;
  column-count: 3;
  column-gap: 29px;
  padding: 50px 15px 30px;
}
.g-tile { overflow: hidden; break-inside: avoid; margin-bottom: 29px; }
.g-tile img { width: 100%; height: auto; display: block; transition: transform .3s; }
.g-tile img:hover { transform: scale(1.04); }
/* JS masonry: order-respecting flex columns (each tile placed in shortest column, document order) */
.gallery-grid.masonry-ready { display: flex; gap: 29px; column-count: unset; }
.gallery-grid.masonry-ready .gcol { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 29px; }
.gallery-grid.masonry-ready .g-tile { margin-bottom: 0; }
.gallery-note {
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #858585;
  padding: 100px 15px 0;
}
.gallery-brand {
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 5px;
  color: #000;
  padding: 23px 15px 50px;
}

/* ---------- footer ---------- */
.site-footer {
  background: var(--orange);
  color: #fff;
  text-align: center;
  padding: 56px 15px 28px;
}
.site-footer .f-logo { width: 222px; margin: 0 auto 38px; }
.f-address {
  font-family: var(--serif);
  font-size: 16px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #3b3b3b;
  line-height: 2;
  margin-bottom: 60px;
}
.site-footer .f-gold { width: 120px; margin: 0 auto 60px; }
.f-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px 30px;
  margin-bottom: 62px;
}
.f-links a {
  font-family: var(--serif);
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
}
.f-links a:hover { text-decoration: none; }
.site-footer .f-slip { width: 300px; margin: 0 auto 68px; }
.f-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1170px;
  margin: 0 auto;
}
.f-social { display: flex; gap: 16px; }
.f-social a {
  width: 32px;
  height: 32px;
  border: 1px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.f-social a:hover { background: var(--orange); border-color: var(--orange); color: #fff; }
.f-social svg { width: 14px; height: 14px; fill: currentColor; }
.f-copy { font-family: var(--sans); font-size: 15px; }
.f-copy a { font-family: var(--serif); }
.f-copy a:hover { text-decoration: none; }


/* live-site container behavior: viewport minus 270px at any width (no cap) */
.hero-head, .carousel, .quick-buttons .row, .location-section, .features-row,
.private-row, .contact-row, .about-row {
  width: calc(100% - 270px);
  max-width: none;
}
/* inside inset beige areas the gutters are already taken, subtract less */
.menu-columns {
  max-width: 1200px;
}
.gallery-grid {
  width: calc(100% - 270px);
  max-width: none;
  padding-top: 0;
}
@media (max-width: 900px) {
  .hero-head, .carousel, .quick-buttons .row, .location-section, .features-row,
  .private-row, .menu-columns, .contact-row, .careers-row,
  .franchise-row, .about-row, .gallery-grid { width: auto; }
  .catering-section { margin: 0; }
}


/* ---------- transitions + focus (matched to live theme) ---------- */
.main-nav a,
.btn-franchise,
.btn-outline,
.btn-order-big, .btn-order-hero, .btn-drinks, .btn-send, .btn-packages,
.f-social a,
.std-form input, .std-form select, .std-form textarea,
.catoak-form input, .catoak-form select, .catoak-form textarea {
  transition: all .3s;
}
.std-form input:focus, .std-form select:focus, .std-form textarea:focus,
.catoak-form input:focus, .catoak-form select:focus, .catoak-form textarea:focus {
  border-color: var(--orange);
  outline: none;
}

/* ---------- 404 ---------- */
.error-section {
  background: #fff;
  text-align: center;
  padding: 120px 20px 140px;
  font-family: var(--serif);
}
.error-code {
  font-size: 96px;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 10px;
}
.error-title {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 4px;
  margin-bottom: 18px;
}
.error-text {
  font-size: 17px;
  color: var(--gray);
  max-width: 480px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

/* ---------- cookie bar ---------- */
.cookie-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 2000;
  background: #000;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 13px 16px;
  font-family: var(--serif);
  font-size: 16px;
}
.cookie-bar button {
  font-family: var(--serif);
  font-size: 14px;
  border: 0;
  border-radius: 3px;
  padding: 7px 14px;
  cursor: pointer;
  background: #fff;
  color: #000;
}
.cookie-bar button.accept { background: var(--orange); color: #fff; }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .header-inner { width: calc(100% - 30px); }
  .location-section .loc-img { flex: 1 1 auto; max-width: none; }
  .main-nav { flex-wrap: wrap; }
  .main-nav a { padding: 10px 12px; }
  .btn-order-hero { position: static; transform: none; display: inline-block; margin: 18px auto 0; }
  .hero-head { text-align: center; }
  .quick-buttons .row, .features-row, .private-row, .menu-columns,
  .contact-row, .careers-row, .franchise-row, .about-row, .catering-row { flex-direction: column; }
  .catering-video-col { flex: 1 1 auto; max-width: 100%; }
  .catoak-stage { flex-direction: column; padding-bottom: 60px; }
  .catoak-left { flex: 1 1 auto; max-width: none; padding-right: 0; }
  .catoak-box { margin-top: 40px; padding: 40px 24px; }
  .location-section { flex-direction: column; }
  .f-bottom { flex-direction: column; gap: 20px; }
  .buffet-panel { margin: 0 auto; }
  .gallery-grid { column-count: 2; }
}
/* ---------- mobile hamburger nav ---------- */
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 10px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: #fff;
  margin: 5px 0;
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.site-header.nav-open .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.site-header.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.site-header.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 900px) {
  .header-inner { flex-wrap: nowrap; align-items: center; }
  .brand { flex-basis: auto; padding: 10px 0; }
  .brand img { width: 140px; }
  .nav-toggle { display: block; }
  .main-nav {
    display: none;
    flex-direction: column;
    flex-basis: 100%;
    order: 3;
    margin: 0;
    width: 100%;
  }
  .main-nav a { padding: 14px 10px; margin: 0; text-align: center; }
  .btn-franchise { display: none; order: 4; margin: 10px auto 18px; }
  .site-header.nav-open .header-inner { flex-wrap: wrap; }
  .site-header.nav-open .main-nav { display: flex; }
  .site-header.nav-open .btn-franchise { display: inline-block; }
}

@media (max-width: 600px) {
  .menu-item { flex-direction: column; }
  .item-name, .item-price, .item-description { flex: 1 1 100%; text-align: left; }
  .hero-title { font-size: 26px; letter-spacing: 4px; }
  .gallery-grid { column-count: 1; }
  .buffet-cards { flex-direction: column; }
  /* catering form: stack the two-column input rows so placeholders aren't truncated */
  .catoak-form .grid2 { flex-direction: column; gap: 0; }
}
