:root {
  --orange:#f7941d;
  --gold:#ffc246;
  --red:#e91612;
  --brown:#5b1c0b;
  --dark:#23100a;
  --black:#12100e;
  --cream:#fff3df;
  --sand:#f4dfc2;
  --kraft:#c5965c;
  --ink:#22130d;
  --muted:#6f5342;
  --white:#fff
}
* {
  box-sizing:border-box
}
html {
  scroll-behavior:smooth
}
body {
  margin:0;
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color:var(--ink);
  background:linear-gradient(180deg,#fff7e9 0%,#fff 45%,#fff2df 100%);
  line-height:1.55
}
img {
  max-width:100%;
  display:block
}
a {
  color:inherit
}
.topbar {
  height:44px;
  background:linear-gradient(90deg,#2a1007,#471a0a,#2a1007);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:32px;
  padding:0 clamp(18px,5vw,72px);
  font-weight:900;
  font-size:14px;
  position:relative
}
.socials {
  display:flex;
  gap:14px;
  align-items:center
}
.socials span {
  width:22px;
  height:22px;
  display:grid;
  place-items:center;
  border:2px solid rgba(255,255,255,.9);
  border-radius:50%;
  font-size:12px
}
.top-lines {
  display:flex;
  gap:38px;
  align-items:center;
  white-space:nowrap
}
.top-lines b {
  color:var(--gold)
}
.top-cta {
  position:absolute;
  right:clamp(18px,5vw,72px);
  background:var(--orange);
  color:#fff;
  text-decoration:none;
  text-transform:uppercase;
  letter-spacing:.06em;
  border-radius:4px;
  padding:9px 16px;
  font-size:12px;
  box-shadow:0 3px 0 rgba(0,0,0,.25)
}
.site-header {
  height:92px;
  position:sticky;
  top:0;
  z-index:50;
  display:grid;
  grid-template-columns:300px 1fr;
  align-items:center;
  background:rgba(255,248,236,.96);
  backdrop-filter:blur(12px);
  box-shadow:0 1px 0 rgba(91,28,11,.12)
}
.brand {
  height:92px;
  display:flex;
  align-items:center;
  padding-left:clamp(18px,5vw,72px);
  overflow:visible;
  text-decoration:none
}
.brand img {
  width:250px;
  max-width:48vw;
  transform:scale(1.12);
  transform-origin:left center
}
.nav-toggle {
  display:none;
  margin-left:auto;
  margin-right:18px;
  border:2px solid var(--brown);
  background:#fff;
  border-radius:999px;
  padding:8px 13px;
  font-weight:1000;
  color:var(--brown)
}
.site-nav {
  display:flex;
  align-items:center;
  justify-content:center;
  gap:clamp(28px,5vw,78px);
  padding-right:clamp(18px,5vw,72px);
  font-weight:1000;
  text-transform:uppercase;
  letter-spacing:.03em;
  font-size:15px
}
.site-nav a {
  text-decoration:none;
  position:relative;
  padding:35px 0;
  color:var(--black)
}
.site-nav a.active:after,.site-nav a:hover:after {
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:20px;
  height:3px;
  background:var(--orange)
}
.hero {
  min-height:650px;
  display:grid;
  grid-template-columns:1.05fr .95fr;
  align-items:center;
  position:relative;
  overflow:hidden;
  background:radial-gradient(circle at 78% 40%,rgba(255,160,31,.2),transparent 28%),linear-gradient(90deg,#12100e 0%,#20130d 52%,#302018 100%);
  color:#fff;
  padding:58px clamp(18px,5vw,72px)
}
.hero:before {
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(circle at 15% 30%,rgba(247,148,29,.18),transparent 20%),radial-gradient(circle at 85% 18%,rgba(255,255,255,.08),transparent 18%);
  pointer-events:none
}
.hero-copy {
  position:relative;
  z-index:2
}
.hero-logo {
  width:min(720px,100%);
  margin-bottom:22px
}
.hero h1 {
  font-family:Impact,"Arial Black",system-ui,sans-serif;
  line-height:.98;
  margin:0 0 14px;
  text-transform:uppercase;
  letter-spacing:.02em;
  font-size:clamp(38px,4.8vw,76px);
  text-shadow:0 4px 0 rgba(0,0,0,.25)
}
.hero h1 span {
  display:block;
  color:var(--orange)
}
.hero p {
  font-size:clamp(17px,2vw,24px);
  max-width:650px;
  color:#ffe9c8;
  margin:0 0 28px;
  font-weight:760
}
.hero-visual {
  position:relative;
  z-index:2
}
.hero-visual img {
  border-radius:26px;
  box-shadow:0 28px 65px rgba(0,0,0,.45);
  border:1px solid rgba(255,255,255,.12)
}
.stamp {
  position:absolute;
  right:8%;
  top:8%;
  width:130px;
  height:130px;
  border:4px double rgba(255,255,255,.8);
  border-radius:50%;
  display:grid;
  place-items:center;
  text-align:center;
  transform:rotate(9deg);
  font-family:Impact,"Arial Black",sans-serif;
  text-transform:uppercase;
  font-size:24px;
  line-height:1;
  color:#fff
}
.stamp b {
  display:block;
  color:var(--orange);
  font-size:18px
}
.btn {
  display:inline-flex;
  align-items:center;
  gap:12px;
  justify-content:center;
  border:0;
  text-decoration:none;
  font-weight:1000;
  text-transform:uppercase;
  letter-spacing:.04em;
  border-radius:8px;
  padding:16px 24px;
  cursor:pointer
}
.btn.primary {
  background:var(--orange);
  color:#fff;
  box-shadow:0 8px 0 rgba(118,47,13,.55)
}
.btn.dark {
  background:var(--brown);
  color:#fff
}
.btn.light {
  background:#fff;
  color:var(--brown);
  border:2px solid rgba(91,28,11,.16)
}
.tagline-marquee {
  overflow:hidden;
  background:linear-gradient(90deg,#df220f,#f47610,#df220f);
  color:#fff;
  border-top:1px solid rgba(255,255,255,.2);
  border-bottom:1px solid rgba(91,28,11,.18)
}
.marquee-track {
  display:flex;
  width:max-content;
  animation:scroll-left 34s linear infinite
}
.marquee-group {
  display:flex;
  align-items:center;
  gap:28px;
  padding:16px 0;
  font-family:Impact,"Arial Black",system-ui,sans-serif;
  text-transform:uppercase;
  letter-spacing:.03em;
  font-size:18px;
  white-space:nowrap
}
.marquee-group span {
  display:inline-flex;
  align-items:center;
  gap:9px;
  margin-right:28px
}
.dot {
  color:var(--gold)
}
@keyframes scroll-left {
  from {
    transform:translateX(0)
  }
  to {
    transform:translateX(-50%)
  }
}
.feature-strip {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:0;
  padding:42px clamp(18px,5vw,72px);
  background:#fff6e9
}
.feature {
  display:flex;
  gap:18px;
  align-items:center;
  padding:0 28px;
  border-right:1px solid rgba(91,28,11,.2)
}
.feature:last-child {
  border-right:0
}
.feature-icon {
  width:72px;
  height:72px;
  flex:0 0 72px;
  border-radius:50%;
  background:linear-gradient(135deg,var(--red),var(--orange));
  display:grid;
  place-items:center;
  color:#fff;
  font-size:34px;
  box-shadow:0 12px 26px rgba(144,53,11,.18)
}
.feature h3 {
  font-size:21px;
  margin:0 0 4px;
  text-transform:uppercase;
  line-height:1.05
}
.feature p {
  margin:0;
  color:#3d281d
}
.section {
  padding:clamp(58px,7vw,96px) clamp(18px,5vw,72px)
}
.section-header {
  text-align:center;
  max-width:840px;
  margin:0 auto 34px
}
.eyebrow {
  color:var(--red);
  font-weight:1000;
  text-transform:uppercase;
  letter-spacing:.18em;
  font-size:13px;
  margin:0 0 10px
}
.section h2,.page-hero h1 {
  font-family:Impact,"Arial Black",system-ui,sans-serif;
  text-transform:uppercase;
  line-height:.98;
  font-size:clamp(38px,5vw,70px);
  letter-spacing:.02em;
  margin:0 0 16px;
  color:var(--dark)
}
.section-header p,.page-hero p {
  font-size:20px;
  color:var(--muted);
  margin:0
}
.promo-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px
}
.promo-card {
  min-height:310px;
  border-radius:18px;
  overflow:hidden;
  background:linear-gradient(135deg,#f0d3ab,#fff4dc);
  box-shadow:0 18px 45px rgba(91,28,11,.12);
  position:relative;
  padding:34px
}
.promo-card:before {
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,rgba(255,244,220,.96) 0%,rgba(255,244,220,.88) 36%,rgba(255,244,220,.42) 68%,rgba(255,244,220,.1) 100%);
  z-index:1
}
.promo-card img {
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  max-height:none;
  object-fit:cover;
  border-radius:0;
  z-index:0
}
.promo-card h3 {
  font-family:Impact,"Arial Black",system-ui,sans-serif;
  text-transform:uppercase;
  font-size:34px;
  line-height:1;
  margin:0 0 14px;
  color:#1f120d;
  max-width:58%;
  position:relative;
  z-index:2
}
.promo-card p {
  font-weight:750;
  max-width:58%;
  margin:0;
  position:relative;
  z-index:2
}
.two-col {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:48px;
  align-items:center
}
.panel {
  background:#fff;
  border:1px solid rgba(91,28,11,.12);
  border-radius:24px;
  padding:34px;
  box-shadow:0 20px 46px rgba(91,28,11,.08)
}
.check-list {
  list-style:none;
  padding:0;
  margin:24px 0 0;
  display:grid;
  gap:12px
}
.check-list li {
  position:relative;
  padding-left:34px;
  font-weight:850
}
.check-list li:before {
  content:"✓";
  position:absolute;
  left:0;
  color:var(--red);
  font-weight:1000
}
.order-band {
  margin:0 clamp(18px,5vw,72px) 80px;
  background:linear-gradient(135deg,#22100a,#5b1c0b);
  border-radius:28px;
  color:#fff;
  display:grid;
  grid-template-columns:120px 1fr auto;
  gap:26px;
  align-items:center;
  padding:34px
}
.order-band img {
  width:110px
}
.order-band h2 {
  margin:0;
  font-family:Impact,"Arial Black";
  font-size:clamp(34px,4vw,58px);
  text-transform:uppercase;
  line-height:1
}
.order-band p {
  margin:6px 0 0;
  color:#ffe5bd
}
.page-hero {
  background:linear-gradient(135deg,#180c07,#421609);
  color:#fff;
  padding:70px clamp(18px,5vw,72px);
  position:relative;
  overflow:hidden
}
.page-hero:after {
  content:"";
  position:absolute;
  right:-70px;
  top:-80px;
  width:280px;
  height:280px;
  background:url('assets/samosa-icon-transparent.png') center/contain no-repeat;
  opacity:.18
}
.page-hero h1 {
  color:#fff
}
.page-hero p {
  color:#ffe7c2;
  max-width:780px
}
.content {
  padding:54px clamp(18px,5vw,72px) 82px
}
.form-card,.text-card {
  background:#fff;
  border:1px solid rgba(91,28,11,.12);
  border-radius:26px;
  box-shadow:0 20px 55px rgba(91,28,11,.1);
  padding:34px;
  max-width:1020px;
  margin:auto
}
.grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px
}
label {
  display:grid;
  gap:7px;
  font-weight:900;
  color:var(--brown);
  margin-bottom:18px
}
input,select,textarea {
  width:100%;
  border:2px solid rgba(91,28,11,.18);
  border-radius:12px;
  padding:14px;
  font:inherit;
  background:#fff;
  color:var(--ink)
}
textarea {
  min-height:132px
}
input:focus,select:focus,textarea:focus {
  outline:3px solid rgba(247,148,29,.28);
  border-color:var(--orange)
}
.hidden {
  display:none
}
.text-card h2 {
  font-size:30px;
  color:var(--brown);
  margin:26px 0 8px
}
.text-card h2:first-child {
  margin-top:0
}
.site-footer {
  background:#1f0d07;
  color:#fff;
  padding:36px clamp(18px,5vw,72px);
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  flex-wrap:wrap
}
.site-footer img {
  width:170px
}
.site-footer a {
  color:#ffd68f
}
.thank-you {
  min-height:100vh;
  background:#fff3df;
  display:grid;
  place-items:center;
  text-align:center;
  padding:40px
}
.thank-you img {
  width:180px;
  margin:auto
}
.thank-you h1 {
  font-family:Impact,"Arial Black";
  text-transform:uppercase;
  font-size:64px;
  margin:20px 0 10px;
  color:var(--dark)
}
@media(max-width:1020px) {
  .top-lines {
    display:none
  }
  .site-header {
    grid-template-columns:1fr auto;
    height:82px
  }
  .brand {
    height:82px
  }
  .brand img {
    width:220px
  }
  .nav-toggle {
    display:block
  }
  .site-nav {
    display:none;
    position:absolute;
    top:82px;
    left:18px;
    right:18px;
    background:#fff;
    border-radius:20px;
    box-shadow:0 22px 50px rgba(91,28,11,.2);
    padding:18px;
    flex-direction:column;
    align-items:flex-start;
    gap:0
  }
  .site-nav.open {
    display:flex
  }
  .site-nav a {
    padding:14px 0
  }
  .hero,.two-col,.promo-grid,.feature-strip,.order-band {
    grid-template-columns:1fr
  }
  .hero {
    min-height:auto
  }
  .feature {
    border-right:0;
    border-bottom:1px solid rgba(91,28,11,.12);
    padding:18px 0
  }
  .feature:last-child {
    border-bottom:0
  }
  .order-band {
    text-align:center
  }
  .order-band img {
    margin:auto
  }
  .promo-card h3,.promo-card p {
    max-width:70%
  }
}
@media(max-width:600px) {
  .topbar {
    justify-content:center
  }
  .socials,.top-cta {
    display:none
  }
  .brand img {
    width:190px
  }
  .hero {
    padding-top:34px
  }
  .hero-logo {
    width:100%
  }
  .stamp {
    display:none
  }
  .promo-card {
    min-height:360px
  }
  .promo-card h3,.promo-card p {
    max-width:100%
  }
  .promo-card img {
    width:100%;
    opacity:1
  }
  .grid {
    grid-template-columns:1fr
  }
  .section h2,.page-hero h1 {
    font-size:40px
  }
  .hero h1 {
    font-size:40px
  }
  .marquee-group {
    font-size:16px
  }
  .form-card,.text-card {
    padding:24px
  }
  .thank-you h1 {
    font-size:44px
  }
}
/* v3 mockup-matched hero */
.hero.hero-image {
  display:block;
  min-height:0;
  padding:0;
  background:#111;
  overflow:hidden;
  position:relative;
  color:inherit
}
.hero.hero-image:before {
  display:none
}
.hero.hero-image img {
  width:100%;
  height:auto;
  display:block;
  border-radius:0;
  box-shadow:none;
  border:0
}
.hero-order-hotspot {
  position:absolute;
  left:5.1%;
  top:80.5%;
  width:14.8%;
  height:11.5%;
  border-radius:9px;
  text-decoration:none;
  z-index:3
}
.hero-order-hotspot:focus-visible {
  outline:4px solid #fff;
  outline-offset:4px
}
.site-nav {
  gap:clamp(24px,4vw,60px)
}
@media(max-width:1020px) {
  .hero-order-hotspot {
    left:5%;
    top:78%;
    width:22%;
    height:13%
  }
  .hero.hero-image {
    overflow-x:hidden
  }
  .hero.hero-image img {
    width:130%;
    max-width:none;
    transform:translateX(-8%)
  }
}
@media(max-width:600px) {
  .hero.hero-image img {
    width:185%;
    transform:translateX(-25%)
  }
  .hero-order-hotspot {
    left:7%;
    top:78%;
    width:34%;
    height:13%
  }
}
/* Footer social links */
.site-footer {
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  gap:16px
}
.footer-brand {
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:8px
}
.footer-brand img,.site-footer>div:first-child img {
  margin-inline:auto
}
.footer-socials {
  display:flex;
  justify-content:center;
  align-items:center;
  gap:18px;
  flex-wrap:wrap
}
.footer-socials a {
  width:46px;
  height:46px;
  border-radius:999px;
  display:grid;
  place-items:center;
  background:linear-gradient(180deg,var(--orange),#e45f0c);
  color:#fff;
  text-decoration:none;
  box-shadow:0 7px 18px rgba(91,28,11,.24);
  transition:transform .2s ease,box-shadow .2s ease
}
.footer-socials a:hover {
  transform:translateY(-2px);
  box-shadow:0 10px 24px rgba(91,28,11,.32)
}
.footer-socials svg {
  width:23px;
  height:23px;
  fill:none;
  stroke:currentColor;
  stroke-width:2.1;
  stroke-linecap:round;
  stroke-linejoin:round
}
.footer-socials a:nth-child(2) svg,.footer-socials a:nth-child(3) svg {
  fill:currentColor;
  stroke:none
}
.footer-socials span {
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0
}
.footer-links {
  margin:0
}
@media (max-width:760px) {
  .topbar {
    height:auto;
    min-height:44px;
    padding:10px 14px;
    flex-direction:column
  }
  .top-cta {
    position:static;
    display:inline-block
  }
  .top-lines {
    gap:12px;
    flex-wrap:wrap;
    justify-content:center
  }
}
/* Service areas page */
.service-hero .eyebrow {

    color: var(--gold);
}
.service-content {

    background: linear-gradient(180deg, #fff7e9 0%, #fff1dc 100%);
}
.service-area-grid {

    display: grid;

    gap: 34px;

    margin-top: 34px;
}
.service-area-card {

    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    gap: 28px;

    align-items: center;

    background: #fff;

    border: 1px solid rgba(91, 28, 11, 0.12);

    border-radius: 28px;

    padding: clamp(22px, 4vw, 38px);

    box-shadow: 0 22px 54px rgba(91, 28, 11, 0.1);

    overflow: hidden;
}
.service-area-card.reverse .service-area-copy {

    order: 2;
}
.service-area-copy h2 {

    font-family: Impact, "Arial Black", system-ui, sans-serif;

    font-size: clamp(34px, 4vw, 58px);

    line-height: 1;

    margin: 0 0 14px;

    text-transform: uppercase;

    color: var(--dark);
}
.service-area-copy p:not(.eyebrow) {

    color: var(--muted);

    font-size: 18px;

    margin: 0 0 24px;
}
.map-card {

    background: linear-gradient(135deg, #f2cf9a, #fff3df);

    border-radius: 26px;

    border: 1px solid rgba(91, 28, 11, 0.12);

    overflow: hidden;

    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.42);
}
.map-card img {

    width: 100%;

    height: auto;
}
.coming-soon-panel {

    display: grid;

    grid-template-columns: 110px 1fr;

    gap: 24px;

    align-items: center;

    margin-top: 34px;

    background: linear-gradient(135deg, #23100a, #5b1c0b);

    color: #fff;

    border-radius: 28px;

    padding: clamp(24px, 4vw, 38px);

    box-shadow: 0 22px 54px rgba(91, 28, 11, 0.16);
}
.coming-soon-panel img {

    width: 100px;
}
.coming-soon-panel .eyebrow {

    color: var(--gold);
}
.coming-soon-panel h2 {

    color: #fff;

    margin: 0 0 8px;
}
.coming-soon-panel p:not(.eyebrow) {

    color: #ffe5bd;

    margin: 0;

    font-size: 18px;
}
@media (max-width: 1020px) {

    .service-area-card,
    .service-area-card.reverse {

        grid-template-columns: 1fr;
  }

    .service-area-card.reverse .service-area-copy {

        order: 0;
  }
}
@media (max-width: 600px) {

    .coming-soon-panel {

        grid-template-columns: 1fr;

        text-align: center;
  }

    .coming-soon-panel img {

        margin: auto;
  }
}
