/*
Theme Name: Golden Taste 57
Theme URI: https://goldentaste57.zerostress.tech/
Author: Golden Taste 57
Description: High-craft, editorial WordPress theme for Golden Taste 57 Indian Kitchen. Recreated directly from the official print PDF menu and website. Features smart autopopulating page slices (Menu, About, Order, Contact, Buffet, House Favourites), full menu with dietary labels, responsive mobile navigation, and live WordPress Customizer controls.
Version: 1.1.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: golden-taste-57
Tags: restaurant, food-and-drink, custom-menu, custom-logo, featured-images, translation-ready, block-styles, one-column, grid-layout
*/

/* ==========================================================================
   CSS Custom Properties (Design Tokens)
   ========================================================================== */
:root {
  --gt-bg: #FAF8F5;
  --gt-bg-card: #FFFFFF;
  --gt-ink: #0B2B2E;
  --gt-ink-dark: #071E20;
  --gt-ink-muted: rgba(11, 43, 46, 0.72);
  --gt-ink-faint: rgba(11, 43, 46, 0.45);
  --gt-border: rgba(11, 43, 46, 0.16);
  --gt-border-subtle: rgba(11, 43, 46, 0.08);

  --gt-dark-bg: #0B2B2E;
  --gt-dark-paper: #071E20;
  --gt-dark-text: #FAF8F5;
  --gt-dark-muted: rgba(250, 248, 245, 0.75);
  --gt-dark-border: rgba(250, 248, 245, 0.14);

  --gt-chili: #C8321F;
  --gt-chili-dark: #A52212;
  --gt-gold: #E8A13A;
  --gt-gold-light: #F4C47A;

  --gt-font-serif: "Prata", Georgia, "Times New Roman", serif;
  --gt-font-sans: "Archivo", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --gt-font-mono: "IBM Plex Mono", SFMono-Regular, Menlo, Monaco, Consolas, monospace;

  --gt-wrap: 1200px;
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background-color: var(--gt-bg);
  color: var(--gt-ink);
  font-family: var(--gt-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s ease, opacity 0.15s ease;
}

a:hover {
  color: var(--gt-chili);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--gt-font-serif);
  font-weight: 400;
  line-height: 1.15;
  margin: 0;
  color: inherit;
}

p {
  margin: 0 0 1em;
}

p:last-child {
  margin-bottom: 0;
}

button {
  font-family: inherit;
  cursor: pointer;
}

::selection {
  background: var(--gt-chili);
  color: #FFFFFF;
}

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

.skip-link:focus {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 999;
  background: var(--gt-chili);
  color: #fff;
  padding: 12px 18px;
}

.gt-wrap {
  max-width: var(--gt-wrap);
  margin: 0 auto;
  padding: 0 28px;
}

/* ==========================================================================
   Typography & Shared Utilities
   ========================================================================== */
.gt-kicker {
  font-family: var(--gt-font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gt-chili);
  display: inline-block;
  margin-bottom: 12px;
}

.gt-kicker--gold {
  color: var(--gt-gold);
}

.gt-section-header {
  margin-bottom: 36px;
}

.gt-section-title {
  font-size: clamp(32px, 4.5vw, 48px);
  line-height: 1.1;
  color: var(--gt-ink);
}

.gt-block-title {
  font-size: clamp(28px, 3.8vw, 40px);
  line-height: 1.15;
  margin-bottom: 24px;
}

/* Buttons */
.gt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--gt-font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.gt-btn--chili {
  background: var(--gt-chili);
  color: #FFFFFF;
}

.gt-btn--chili:hover {
  background: var(--gt-ink);
  color: #FFFFFF;
}

.gt-btn--outline {
  background: transparent;
  color: var(--gt-ink);
  border-color: rgba(11, 43, 46, 0.4);
}

.gt-btn--outline:hover {
  background: var(--gt-ink);
  color: #FFFFFF;
  border-color: var(--gt-ink);
}

.gt-btn--ghost-light {
  background: transparent;
  color: var(--gt-dark-text);
  border-color: rgba(250, 248, 245, 0.4);
}

.gt-btn--ghost-light:hover {
  background: rgba(250, 248, 245, 0.1);
  border-color: var(--gt-dark-text);
}

/* ==========================================================================
   Header (Page 1 PDF Layout)
   ========================================================================== */
.gt-header {
  background: var(--gt-bg);
  border-bottom: 1px solid var(--gt-border);
  position: relative;
  z-index: 100;
}

/* PDF Top Brand & Meta Row */
.gt-header__top {
  padding: 24px 0 18px;
  border-bottom: 1px solid var(--gt-border-subtle);
}

.gt-header__top-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.gt-brand__link {
  display: flex;
  align-items: center;
  gap: 16px;
}

.gt-brand__mark {
  width: 48px;
  height: 48px;
  border: 1px solid var(--gt-ink);
  display: grid;
  place-items: center;
  font-family: var(--gt-font-serif);
  font-size: 22px;
  color: var(--gt-ink);
  flex-shrink: 0;
}

.gt-brand__text {
  display: flex;
  flex-direction: column;
}

.gt-brand__name {
  font-family: var(--gt-font-serif);
  font-size: clamp(22px, 3vw, 28px);
  color: var(--gt-ink);
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.gt-brand__sub {
  font-family: var(--gt-font-mono);
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gt-ink-faint);
  margin-top: 4px;
}

.gt-header__meta {
  text-align: right;
  font-family: var(--gt-font-mono);
  font-size: 12px;
  color: var(--gt-ink-muted);
  line-height: 1.6;
}

.gt-header__meta a {
  color: var(--gt-ink-muted);
}

.gt-header__meta a:hover {
  color: var(--gt-chili);
}

/* Navigation Bar */
.gt-header__nav-bar {
  padding: 10px 0;
}

.gt-header__nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.gt-nav ul {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 8px;
}

.gt-nav a {
  font-family: var(--gt-font-mono);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 8px 14px;
  color: var(--gt-ink);
  font-weight: 500;
}

.gt-nav a:hover,
.gt-nav .current-menu-item > a,
.gt-nav .current_page_item > a {
  color: var(--gt-chili);
}

.gt-header__right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.gt-burger {
  display: none;
  background: none;
  border: 1px solid var(--gt-border);
  width: 42px;
  height: 42px;
  padding: 8px;
  position: relative;
}

.gt-burger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--gt-ink);
  position: absolute;
  left: 10px;
  transition: all 0.2s ease;
}

.gt-burger span:nth-child(1) { top: 13px; }
.gt-burger span:nth-child(2) { top: 20px; }
.gt-burger span:nth-child(3) { top: 27px; }

/* Mobile Menu Drawer */
.gt-mobile-nav {
  display: none;
  background: var(--gt-bg);
  border-top: 1px solid var(--gt-border);
}

.gt-mobile-nav.is-open {
  display: block;
}

.gt-mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: 12px 24px;
}

.gt-mobile-nav li {
  border-bottom: 1px solid var(--gt-border-subtle);
}

.gt-mobile-nav a {
  display: block;
  padding: 14px 0;
  font-family: var(--gt-font-mono);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gt-ink);
}

/* ==========================================================================
   Page 1: Hero Split & The Buffet Card
   ========================================================================== */
.gt-hero-split {
  padding: 60px 0 50px;
  border-bottom: 1px solid var(--gt-border);
}

.gt-hero-split__grid {
  display: grid;
  grid-template-columns: 1.25fr 0.95fr;
  gap: 48px;
  align-items: stretch;
}

.gt-hero-split__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 20px;
}

.gt-hero-split__title {
  font-size: clamp(40px, 5.5vw, 68px);
  line-height: 1.05;
  color: var(--gt-ink);
  margin-bottom: 24px;
  text-wrap: balance;
}

.gt-hero-split__desc {
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.6;
  color: var(--gt-ink-muted);
  max-width: 540px;
  margin-bottom: 32px;
}

.gt-hero-split__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* The Buffet Card (PDF Page 1 Right) */
.gt-buffet-card {
  background: var(--gt-dark-bg);
  color: var(--gt-dark-text);
  padding: clamp(36px, 5vw, 54px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.gt-buffet-card__kicker {
  font-family: var(--gt-font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gt-gold);
  margin-bottom: 16px;
}

.gt-buffet-card__title {
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.15;
  color: #FFFFFF;
  margin-bottom: 28px;
}

.gt-buffet-card__prices {
  display: flex;
  gap: 40px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.gt-buffet-card__price-col {
  display: flex;
  flex-direction: column;
}

.gt-buffet-card__price {
  font-family: var(--gt-font-serif);
  font-size: clamp(32px, 4vw, 46px);
  color: var(--gt-gold);
  line-height: 1;
}

.gt-buffet-card__label {
  font-family: var(--gt-font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gt-dark-muted);
  margin-top: 8px;
}

.gt-buffet-card__note {
  font-size: 15px;
  line-height: 1.6;
  color: var(--gt-dark-muted);
}

.gt-buffet-card--standalone {
  max-width: 800px;
  margin: 60px auto;
}

.gt-buffet-card__hours {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--gt-dark-border);
}

.gt-buffet-card__times {
  font-family: var(--gt-font-serif);
  font-size: 18px;
  color: #FFFFFF;
  line-height: 1.5;
  margin-top: 6px;
}

/* ==========================================================================
   Page 1: Hours Bar Strip
   ========================================================================== */
.gt-hours-bar {
  border-bottom: 1px solid var(--gt-border);
  background: var(--gt-bg);
}

.gt-hours-bar__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.gt-hours-bar__col {
  padding: 32px 24px;
  border-right: 1px solid var(--gt-border);
}

.gt-hours-bar__col:first-child {
  padding-left: 0;
}

.gt-hours-bar__col:last-child {
  border-right: none;
  padding-right: 0;
}

.gt-hours-bar__times {
  font-family: var(--gt-font-serif);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.4;
  color: var(--gt-ink);
  margin-top: 8px;
}

/* ==========================================================================
   Page 1: House Favourites
   ========================================================================== */
.gt-favourites-section {
  padding: 64px 0;
  border-bottom: 1px solid var(--gt-border);
}

.gt-favourites-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.gt-fav-col {
  display: flex;
  flex-direction: column;
}

.gt-fav-col__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 12px;
  gap: 12px;
}

.gt-fav-col__name {
  font-family: var(--gt-font-serif);
  font-size: clamp(22px, 2.5vw, 26px);
  color: var(--gt-ink);
}

.gt-fav-col__price {
  font-family: var(--gt-font-mono);
  font-size: 16px;
  color: var(--gt-chili);
  font-weight: 500;
}

.gt-fav-col__desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--gt-ink-muted);
}

/* ==========================================================================
   Pages 2 & 3: Full Menu ("Everything we cook")
   ========================================================================== */
.gt-menu-section {
  padding: 70px 0;
  border-bottom: 1px solid var(--gt-border);
}

.gt-menu-header {
  margin-bottom: 36px;
}

.gt-menu-title {
  font-size: clamp(36px, 5vw, 56px);
  margin-bottom: 14px;
}

.gt-menu-subtitle {
  font-size: 16px;
  color: var(--gt-ink-muted);
}

/* Menu Filter Tabs */
.gt-menutabs {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--gt-bg);
  border-top: 1px solid var(--gt-border);
  border-bottom: 1px solid var(--gt-border);
  margin-bottom: 48px;
  display: flex;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 4px 0;
}

.gt-menutabs::-webkit-scrollbar {
  display: none;
}

.gt-tab {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  font-family: var(--gt-font-mono);
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 14px 18px;
  color: var(--gt-ink-muted);
  white-space: nowrap;
  transition: all 0.15s ease;
}

.gt-tab:hover,
.gt-tab.is-active {
  color: var(--gt-chili);
  border-bottom-color: var(--gt-chili);
}

/* 2-Column Menu Grid */
.gt-menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px 64px;
}

.gt-menu-category {
  margin-bottom: 20px;
}

.gt-menu-category[hidden] {
  display: none;
}

.gt-menu-category__title {
  font-size: clamp(26px, 3.2vw, 34px);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gt-border);
  margin-bottom: 16px;
  color: var(--gt-ink);
}

.gt-menu-category__items {
  display: flex;
  flex-direction: column;
}

.gt-menu-item {
  padding: 14px 0;
  border-bottom: 1px dotted var(--gt-border);
}

.gt-menu-item:last-child {
  border-bottom: none;
}

.gt-menu-item__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}

.gt-menu-item__name {
  font-family: var(--gt-font-serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--gt-ink);
}

.gt-menu-item__tag {
  font-family: var(--gt-font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--gt-chili);
  margin-left: 8px;
  vertical-align: 1px;
}

.gt-menu-item__price {
  font-family: var(--gt-font-mono);
  font-size: 15px;
  color: var(--gt-ink);
  font-weight: 500;
  white-space: nowrap;
}

.gt-menu-item__desc {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--gt-ink-muted);
  margin-top: 4px;
}

/* ==========================================================================
   Page 4: About Us ("A kitchen that grinds its own masala")
   ========================================================================== */
.gt-about-section {
  padding: 70px 0;
  border-bottom: 1px solid var(--gt-border);
}

.gt-about-header {
  max-width: 860px;
  margin-bottom: 48px;
}

.gt-about-title {
  font-size: clamp(34px, 4.8vw, 52px);
  margin-bottom: 20px;
}

.gt-about-lead {
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.65;
  color: var(--gt-ink-muted);
}

.gt-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.gt-pillar-card {
  border-top: 1px solid var(--gt-chili);
  padding-top: 18px;
}

.gt-pillar-card__num {
  font-family: var(--gt-font-serif);
  font-size: 18px;
  color: var(--gt-chili);
  margin-bottom: 14px;
}

.gt-pillar-card__title {
  font-size: 24px;
  margin-bottom: 12px;
  color: var(--gt-ink);
}

.gt-pillar-card__text {
  font-size: 15.5px;
  line-height: 1.62;
  color: var(--gt-ink-muted);
}

/* Dark Quote Banner */
.gt-quote-banner {
  background: var(--gt-dark-bg);
  color: var(--gt-dark-text);
  padding: clamp(48px, 6vw, 72px) 32px;
  text-align: center;
}

.gt-quote-banner__quote {
  font-family: var(--gt-font-serif);
  font-size: clamp(24px, 3.6vw, 38px);
  line-height: 1.35;
  margin: 0 auto;
  max-width: 800px;
  color: #FFFFFF;
}

.gt-quote-banner__cite {
  display: block;
  font-family: var(--gt-font-mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gt-gold);
  margin-top: 24px;
  font-style: normal;
}

/* ==========================================================================
   Page 4: Order & Find Us Bottom Split
   ========================================================================== */
.gt-bottom-section,
.gt-page-slice {
  padding: 70px 0;
}

.gt-bottom-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

/* Order Block */
.gt-order-rows {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.gt-order-row__title {
  font-size: 22px;
  color: var(--gt-ink);
  margin-bottom: 6px;
}

.gt-order-row__title a:hover {
  color: var(--gt-chili);
}

.gt-order-row__desc {
  font-size: 15.5px;
  color: var(--gt-ink-muted);
  line-height: 1.6;
}

/* Find Us Block */
.gt-findus-details {
  display: flex;
  flex-direction: column;
}

.gt-findus-row {
  padding: 16px 0;
  border-bottom: 1px solid var(--gt-border);
}

.gt-findus-row:first-child {
  padding-top: 0;
}

.gt-findus-row__label {
  font-family: var(--gt-font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gt-ink-faint);
  margin-bottom: 4px;
}

.gt-findus-row__val {
  font-family: var(--gt-font-serif);
  font-size: 20px;
  color: var(--gt-ink);
  line-height: 1.4;
}

.gt-findus-row__val a:hover {
  color: var(--gt-chili);
}

/* Form Styles */
.gt-form {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.gt-form input,
.gt-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--gt-border);
  background: #FFFFFF;
  font-family: var(--gt-font-sans);
  font-size: 15px;
  color: var(--gt-ink);
  transition: border-color 0.15s ease;
}

.gt-form input:focus,
.gt-form textarea:focus {
  outline: none;
  border-color: var(--gt-chili);
}

.gt-form button {
  justify-self: start;
}

.gt-notice {
  background: #FFFFFF;
  border-left: 3px solid var(--gt-gold);
  padding: 14px 18px;
  font-size: 15px;
  margin-bottom: 20px;
}

/* ==========================================================================
   Page Headers & Entry Content
   ========================================================================== */
.gt-pagehead {
  padding: 70px 0 30px;
}

.gt-pagehead h1 {
  font-size: clamp(38px, 6vw, 60px);
}

.gt-entry {
  max-width: 820px;
  padding: 20px 0 60px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--gt-ink);
}

.gt-entry h2 {
  font-size: 32px;
  margin: 1.8em 0 0.6em;
}

.gt-entry h3 {
  font-size: 24px;
  margin: 1.6em 0 0.5em;
}

.gt-entry ul,
.gt-entry ol {
  padding-left: 1.4em;
  margin-bottom: 1.4em;
}

.gt-entry blockquote {
  border-left: 3px solid var(--gt-chili);
  margin: 1.8em 0;
  padding-left: 20px;
  font-family: var(--gt-font-serif);
  font-size: 22px;
  font-style: italic;
}

/* ==========================================================================
   Page 5: Footer
   ========================================================================== */
.gt-footer {
  background: var(--gt-dark-paper);
  color: var(--gt-dark-muted);
  padding: 70px 0 30px;
  border-top: 1px solid var(--gt-dark-border);
}

.gt-footer a {
  color: var(--gt-dark-muted);
}

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

.gt-footer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.gt-footer__brand {
  font-family: var(--gt-font-serif);
  font-size: 24px;
  color: #FFFFFF;
  line-height: 1.1;
}

.gt-footer__sub {
  font-family: var(--gt-font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gt-gold);
  margin-top: 4px;
  margin-bottom: 16px;
}

.gt-footer__contact {
  font-size: 14.5px;
  line-height: 1.7;
}

.gt-footer__head {
  font-family: var(--gt-font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 16px;
}

.gt-footer__hours {
  font-size: 14.5px;
  line-height: 1.7;
}

.gt-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gt-footer__links a {
  font-size: 14.5px;
}

.gt-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.gt-social a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--gt-dark-border);
  display: grid;
  place-items: center;
  font-family: var(--gt-font-mono);
  font-size: 12px;
  color: var(--gt-dark-muted);
}

.gt-social a:hover {
  border-color: var(--gt-gold);
  color: var(--gt-gold);
}

.gt-footer__base {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--gt-dark-border);
  font-family: var(--gt-font-mono);
  font-size: 11.5px;
  letter-spacing: 0.12em;
  color: rgba(250, 248, 245, 0.45);
  text-align: center;
}

/* ==========================================================================
   Scroll Animations & Back-to-Top
   ========================================================================== */
.gt-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s cubic-bezier(0.16, 0.84, 0.34, 1), transform 0.65s cubic-bezier(0.16, 0.84, 0.34, 1);
}

.gt-reveal.is-in {
  opacity: 1;
  transform: none;
}

.gt-totop {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  width: 48px;
  height: 48px;
  border: 0;
  background: var(--gt-chili);
  color: #FFFFFF;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(11, 43, 46, 0.25);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: all 0.25s ease;
}

.gt-totop.is-in {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.gt-totop:hover {
  background: var(--gt-ink);
}

.gt-totop svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 992px) {
  .gt-hero-split__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .gt-hero-split__left {
    padding-right: 0;
  }
  .gt-bottom-split {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .gt-footer__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }
}

@media (max-width: 820px) {
  .gt-nav,
  .gt-header__cta {
    display: none;
  }
  .gt-burger {
    display: block;
  }
  .gt-header__top-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .gt-header__meta {
    text-align: left;
  }
  .gt-hours-bar__grid {
    grid-template-columns: 1fr;
  }
  .gt-hours-bar__col {
    border-right: none;
    border-bottom: 1px solid var(--gt-border);
    padding: 24px 0;
  }
  .gt-hours-bar__col:last-child {
    border-bottom: none;
  }
  .gt-favourites-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .gt-menu-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .gt-pillars-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 540px) {
  .gt-wrap {
    padding: 0 20px;
  }
  .gt-footer__grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gt-reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

@media print {
  .gt-header__nav-bar,
  .gt-mobile-nav,
  .gt-menutabs,
  .gt-totop,
  .gt-footer {
    display: none !important;
  }
  body {
    background: #FFFFFF !important;
  }
}
