:root {
  --cream: #fbf5ea;
  --cream-deep: #f6ecd9;
  --dark: #2b1d14;
  --gold: #c8963c;
  --gold-deep: #b9852a;
  --gold-light: #e8c983;
  --text-muted: #6b5f52;
  --logo-orange: #921f10;
  --logo-maroon: #6b0300;
  --white: #ffffff;
  --radius-lg: 999px;
  --shadow-soft: 0 10px 30px rgba(43, 29, 20, 0.08);
}

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

body {
  font-family: 'Poppins', sans-serif;
  background: var(--cream);
  color: var(--dark);
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

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

/* ---------- Header ---------- */
.site-header {
  background: var(--cream);
  border-bottom: 1px solid rgba(43,29,20,0.06);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 18px 40px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.brand-mark {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.brand-text { display: flex; flex-direction: column; line-height: 1.25; }
.brand-name { font-family: 'Playfair Display', serif; font-size: 1.35rem; font-weight: 600; letter-spacing: .3px; white-space: nowrap; }
.brand-dark { color: var(--logo-orange); }
.brand-gold { color: var(--logo-orange); }
.brand-tagline { font-size: .62rem; letter-spacing: 1.4px; color: var(--text-muted); font-weight: 500; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-left: auto;
  font-size: .92rem;
  font-weight: 500;
  letter-spacing: .3px;
}
.main-nav a { color: var(--dark); padding-bottom: 6px; position: relative; white-space: nowrap; }
.main-nav a.active { color: var(--gold-deep); }
.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--gold-deep);
}
.main-nav a:hover { color: var(--gold-deep); }

/* ---------- Nav "Menu" dropdown ---------- */
.nav-dropdown { position: relative; }
.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  font: inherit;
  font-weight: 500;
  color: var(--dark);
  cursor: pointer;
  padding-bottom: 6px;
  position: relative;
}
.nav-dropdown-trigger.active { color: var(--gold-deep); }
.nav-dropdown-trigger.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--gold-deep);
}
.nav-dropdown-trigger:hover { color: var(--gold-deep); }
.icon-chevron { width: 14px; height: 14px; color: currentColor; transition: transform .2s ease; }
.nav-dropdown.open .icon-chevron { transform: rotate(180deg); }

.nav-dropdown-panel {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 20px 45px rgba(43,29,20,0.16);
  padding: 10px;
  display: grid;
  grid-template-columns: repeat(2, minmax(190px, 1fr));
  gap: 2px;
  width: 460px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: max-height .25s ease, opacity .2s ease, transform .2s ease;
  z-index: 60;
}
.nav-dropdown.open .nav-dropdown-panel {
  max-height: 520px;
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
  overflow-y: auto;
}
.dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: .85rem;
  font-weight: 500;
  color: var(--dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dropdown-item:hover { background: var(--cream-deep); }
.dropdown-item.active { background: var(--gold-light); color: var(--dark); font-weight: 600; }
.dropdown-item-icon { font-size: 1rem; flex-shrink: 0; }

@media (max-width: 1024px) {
  .nav-dropdown-panel { display: none; }
}

.phone-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 10px 22px;
  font-weight: 600;
  font-size: .92rem;
  white-space: nowrap;
  color: var(--dark);
  transition: background .2s ease;
}
.phone-pill:hover { background: var(--cream-deep); }
.icon-phone { width: 16px; height: 16px; fill: var(--gold-deep); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 64px 0 40px;
  overflow: hidden;
}

.hero-pattern {
  position: absolute;
  right: -60px;
  top: 0;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle at center, rgba(200,150,60,0.07), transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 50px;
  align-items: center;
}

.eyebrow {
  color: var(--gold-deep);
  font-weight: 600;
  letter-spacing: 4px;
  font-size: .85rem;
  margin-bottom: 18px;
}

.hero-copy h1 {
  font-family: 'Playfair Display', serif;
  font-size: 4.2rem;
  line-height: 1.05;
  font-weight: 600;
}
.hero-title-dark { display: block; color: var(--dark); }
.hero-title-gold { display: block; color: var(--gold-deep); font-style: italic; }

.divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 26px 0 28px;
}
.divider-line { flex: 1; max-width: 200px; height: 1px; background: var(--gold); opacity: .6; }
.icon-lotus { width: 20px; height: 20px; fill: var(--gold-deep); }

.hero-subtitle {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 14px;
}

.hero-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 34px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--gold);
  color: var(--dark);
  font-weight: 700;
  letter-spacing: .5px;
  padding: 16px 34px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  transition: transform .2s ease, background .2s ease;
}
.btn-primary:hover { background: var(--gold-deep); transform: translateY(-2px); }
.icon-fork { width: 18px; height: 18px; fill: var(--dark); }

.hero-media { position: relative; }
.plate-frame {
  border-radius: 50%;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  box-shadow: var(--shadow-soft);
  background: linear-gradient(135deg, var(--cream-deep), #efe0c2);
}
.plate-frame img { width: 100%; height: 100%; object-fit: cover; }
.plate-frame.img-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-muted);
  font-size: .9rem;
  padding: 40px;
}
.plate-frame.img-fallback::after {
  content: "Add your food photo at assets/hero-food.jpg";
}

/* ---------- Feature strip ---------- */
.feature-strip {
  margin-top: 56px;
  background: var(--white);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  padding: 32px 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.feature-strip li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 0 24px;
  position: relative;
}
.feature-strip li + li::before {
  content: "";
  position: absolute;
  left: 0; top: 6px; bottom: 6px;
  width: 1px;
  background: rgba(43,29,20,0.08);
}

.feature-icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--cream-deep);
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-icon svg { width: 22px; height: 22px; fill: none; stroke: var(--gold-deep); stroke-width: 1.4; }
.feature-icon svg path { fill: var(--gold-deep); stroke: none; }

.feature-strip h3 {
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.feature-strip p {
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-media { order: -1; max-width: 460px; margin: 0 auto; }
  .feature-strip { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .feature-strip li + li::before { display: none; }
  .main-nav { display: none; }
}

@media (max-width: 640px) {
  .header-inner { flex-wrap: wrap; padding: 16px 20px; }
  .container { padding: 0 20px; }
  .hero-copy h1 { font-size: 2.8rem; }
  .feature-strip { grid-template-columns: 1fr; }
  .phone-pill span { display: none; }
}

/* ---------- Menu page ---------- */
.menu-hero {
  padding: 56px 0 20px;
  text-align: center;
  background: linear-gradient(180deg, var(--cream-deep), var(--cream));
}
.menu-hero-inner .eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 8px;
}
.icon-eyebrow { width: 18px; height: 18px; fill: var(--gold-deep); }
.menu-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.4rem;
  font-weight: 600;
  line-height: 1.1;
  color: var(--dark);
}
.menu-hero .divider { justify-content: center; margin: 10px auto; }
.menu-hero .divider-line { max-width: 90px; }
.menu-hero-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto;
}

.filter-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  padding-bottom: 8px;
}
.filter-pill {
  border: 1.5px solid rgba(43,29,20,0.15);
  background: var(--white);
  color: var(--dark);
  font-size: .88rem;
  font-weight: 500;
  padding: 10px 22px;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all .2s ease;
  font-family: 'Poppins', sans-serif;
}
.filter-pill:hover { border-color: var(--gold); }
.filter-pill.active {
  background: var(--dark);
  border-color: var(--dark);
  color: var(--cream);
}

.menu-body { padding: 22px 0 80px; }

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  color: var(--text-muted);
  margin-bottom: 26px;
}
.breadcrumb a { color: var(--text-muted); transition: color .2s ease; }
.breadcrumb a:hover { color: var(--gold-deep); }
.breadcrumb .crumb-current { color: var(--gold-deep); font-weight: 600; }

.menu-content { width: 100%; }

/* ---------- Category heading (icon + title + tagline) ---------- */
.category-heading {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 34px;
}
.category-heading[hidden] { display: none; }
.category-heading-icon {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--cream-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  flex-shrink: 0;
}
.category-heading h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.1rem;
  font-weight: 600;
  color: var(--dark);
}
.category-heading p {
  color: var(--text-muted);
  font-size: .95rem;
  margin-top: 4px;
}

.section-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--gold-deep);
  margin-bottom: 26px;
}
.section-label::before, .section-label::after {
  content: "";
  height: 1px;
  width: 60px;
  background: var(--gold);
  opacity: .5;
}
.icon-chef, .icon-grid { width: 18px; height: 18px; fill: var(--gold-deep); }

.all-items-label { margin-top: 60px; }

/* ---- Chef's specials (large cards) ---- */
.specials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.special-card {
  position: relative;
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.special-card .dish-photo { aspect-ratio: 4 / 3; }
.special-card .card-body { padding: 20px 22px 22px; }
.special-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.special-card p {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 16px;
}

.badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold);
  color: var(--dark);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-lg);
}

.fav-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.fav-btn svg { width: 16px; height: 16px; fill: none; stroke: var(--dark); stroke-width: 1.6; }
.fav-btn:hover svg { fill: var(--gold-deep); stroke: var(--gold-deep); }
.fav-btn.small { width: 28px; height: 28px; top: 10px; right: 10px; }
.fav-btn.small svg { width: 13px; height: 13px; }

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.veg-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  color: var(--text-muted);
  font-weight: 500;
}
.veg-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #3a8f4a;
  display: inline-block;
}
.dish-price {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--dark);
}

/* ---- Dish photo placeholder ---- */
.dish-photo {
  position: relative;
  background: linear-gradient(135deg, var(--cream-deep), #eee0c4);
  overflow: hidden;
}
.dish-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

.dish-photo.no-photo::before {
  content: "🍽";
  position: absolute;
  top: 34%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.8rem;
  opacity: .4;
}
.dish-photo.no-photo::after {
  content: attr(data-label);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  padding: 14px 12px;
  font-size: .68rem;
  line-height: 1.4;
  color: var(--text-muted);
  font-family: 'Poppins', sans-serif;
  word-break: break-all;
}

/* ---- All items grid (compact cards) ---- */
.items-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.item-card {
  position: relative;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.item-card .dish-photo { aspect-ratio: 1 / 1; }
.item-card .card-body { padding: 14px 16px 16px; }
.item-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.02rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.item-card p {
  font-size: .78rem;
  color: var(--text-muted);
  line-height: 1.45;
  margin-bottom: 12px;
  min-height: 2.6em;
}
.item-card .dish-price { font-size: .92rem; }
.item-card .veg-tag { font-size: .74rem; }

@media (max-width: 1100px) {
  .items-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .specials-grid { grid-template-columns: 1fr; }
  .menu-hero h1 { font-size: 2.4rem; }
}
@media (max-width: 640px) {
  .items-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .section-label::before, .section-label::after { width: 30px; }
}
/*==================================================
              ABOUT PAGE
==================================================*/

.about-hero{
    padding:48px 0 40px;
    background:linear-gradient(to bottom,#fbf5ea,#fffdf8);
    overflow:hidden;
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.about-content h1{
    font-family:'Playfair Display',serif;
    font-size:4rem;
    line-height:1.1;
    color:var(--dark);
    margin-bottom:20px;
}

.about-content h1 span{
    display:block;
    color:var(--gold-deep);
    font-style:italic;
}

.about-desc{
    color:var(--text-muted);
    line-height:1.9;
    max-width:520px;
    margin:30px 0;
    font-size:1rem;
}

.team-sign{
    font-family:'Playfair Display',serif;
    color:var(--gold-deep);
    font-size:1.2rem;
    font-style:italic;
}

.about-image img{
    width:100%;
    border-radius:30px;
    box-shadow:0 25px 60px rgba(0,0,0,.12);
    transition:.5s;
}

.about-image img:hover{
    transform:scale(1.03);
}

/*==========================
LOCATION / MAP
===========================*/

.location{
    padding:48px 0;
    background:#fffdf8;
}

.location-inner{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.location-text h2{
    font-family:'Playfair Display',serif;
    font-size:2.6rem;
    color:var(--dark);
    margin-bottom:18px;
}

.location-address{
    color:var(--text-muted);
    line-height:1.8;
    max-width:420px;
    margin-bottom:28px;
    font-size:1rem;
}

.location-map{
    width:100%;
    aspect-ratio:4/3;
    border-radius:25px;
    overflow:hidden;
    box-shadow:0 20px 45px rgba(0,0,0,.1);
}

.location-map a{
    display:block;
    width:100%;
    height:100%;
}

.location-map iframe{
    display:block;
    pointer-events:none;
}

/*==========================
PHILOSOPHY
===========================*/

.philosophy{
    padding:48px 0;
    background:white;
    text-align:center;
}

.section-title{
    color:var(--gold-deep);
    letter-spacing:4px;
    font-weight:600;
    margin-bottom:15px;
}

.philosophy h2{
    font-family:'Playfair Display',serif;
    font-size:3rem;
    margin-bottom:40px;
}

.philosophy-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.philosophy-card{
    background:var(--cream);
    padding:45px 30px;
    border-radius:25px;
    transition:.35s;
    box-shadow:0 15px 35px rgba(0,0,0,.06);
}

.philosophy-card:hover{
    transform:translateY(-10px);
}

.circle-icon{
    width:80px;
    height:80px;
    border-radius:50%;
    background:var(--cream-deep);
    display:flex;
    justify-content:center;
    align-items:center;
    margin:auto;
    font-size:32px;
    margin-bottom:25px;
}

.philosophy-card h3{
    font-family:'Playfair Display',serif;
    margin-bottom:15px;
    font-size:1.4rem;
}

.philosophy-card p{
    color:var(--text-muted);
    line-height:1.8;
}

/*==========================
OUR STORY
===========================*/

.our-story{
    padding:48px 0;
    background:#fffdf8;
}

.story-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.story-image img{
    width:100%;
    border-radius:25px;
    box-shadow:0 20px 45px rgba(0,0,0,.1);
    transition:.5s;
}

.story-image img:hover{
    transform:scale(1.03);
}

.story-content h2{
    font-family:'Playfair Display',serif;
    font-size:3rem;
    margin-bottom:25px;
}

.story-content p{
    color:var(--text-muted);
    line-height:1.9;
    margin-bottom:20px;
}
/*==========================
WHY CHOOSE US
===========================*/

.why-us{
    padding:48px 0;
    background:var(--cream);
    text-align:center;
}

.why-us h2{
    font-family:'Playfair Display',serif;
    font-size:3rem;
    margin-bottom:40px;
    color:var(--dark);
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.why-card{
    background:#fff;
    padding:40px 25px;
    border-radius:22px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.35s;
}

.why-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 50px rgba(0,0,0,.12);
}

.why-icon{
    font-size:42px;
    margin-bottom:18px;
}

.why-card h3{
    font-family:'Playfair Display',serif;
    margin-bottom:15px;
    color:var(--dark);
}

.why-card p{
    color:var(--text-muted);
    line-height:1.8;
}


/*==========================
STATISTICS
===========================*/

.stats{
    padding:48px 0;
    background:linear-gradient(135deg,#2b1d14,#3d2b20);
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    text-align:center;
}

.stat-card{
    color:#fff;
}

.stat-card h2{
    font-family:'Playfair Display',serif;
    font-size:3rem;
    color:var(--gold);
    margin-bottom:10px;
}

.stat-card p{
    letter-spacing:1px;
    color:#f1e6d0;
}


/*==========================
CALL TO ACTION
===========================*/

.about-cta{
    padding:48px 0;
    background:#fff;
    text-align:center;
}

.about-cta h2{
    font-family:'Playfair Display',serif;
    font-size:3rem;
    max-width:700px;
    margin:auto;
    color:var(--dark);
}

.about-cta p{
    margin:25px auto 40px;
    max-width:600px;
    color:var(--text-muted);
    line-height:1.8;
}

.cta-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}


/*==========================
FOOTER
===========================*/

.site-footer{
    background:#2b1d14;
    color:#fff;
    padding:70px 0 20px;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:60px;
}

.site-footer h3,
.site-footer h4{
    color:var(--gold-light);
    margin-bottom:18px;
    font-family:'Playfair Display',serif;
}

.site-footer p,
.site-footer li{
    color:#d8d2ca;
    line-height:2;
}

.site-footer ul{
    list-style:none;
    padding:0;
}

.site-footer a{
    color:#d8d2ca;
    transition:.3s;
}

.site-footer a:hover{
    color:var(--gold);
}

.copyright{
    border-top:1px solid rgba(255,255,255,.1);
    margin-top:50px;
    padding-top:20px;
    text-align:center;
    color:#c6bfb7;
    font-size:.9rem;
}


/*==========================
RESPONSIVE
===========================*/

@media(max-width:991px){

.about-grid,
.story-grid,
.location-inner{
grid-template-columns:1fr;
}

.location-text{
text-align:center;
}

.location-address{
margin-left:auto;
margin-right:auto;
}

.about-content{
text-align:center;
}

.about-desc{
margin:auto;
margin-top:25px;
margin-bottom:30px;
}

.philosophy-grid{
grid-template-columns:1fr;
}

.why-grid{
grid-template-columns:repeat(2,1fr);
}

.stats-grid{
grid-template-columns:repeat(2,1fr);
}

.footer-grid{
grid-template-columns:1fr;
text-align:center;
}

}

@media(max-width:600px){

.about-content h1{
font-size:2.8rem;
}

.story-content h2,
.philosophy h2,
.why-us h2,
.about-cta h2{
font-size:2rem;
}

.why-grid,
.stats-grid{
grid-template-columns:1fr;
}

.about-hero,
.philosophy,
.our-story,
.why-us,
.stats,
.about-cta,
.location{
padding:36px 0;
}

.circle-icon{
width:65px;
height:65px;
font-size:26px;
}

}