@import url('variables.css');
@import url('https://fonts.googleapis.com/css2?family=Aref+Ruqaa:wght@400;700&family=Cairo:wght@300;400;600;700;900&display=swap');

/* ========================================
   BASE RESET & PAPER TEXTURE
   ======================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    direction: rtl;
    background-color: var(--parchment-light);
    color: var(--ink-dark);
    line-height: 1.8;
    /* Paper noise texture via CSS — no image file needed */
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23noise)' opacity='0.06'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 400px 400px;
}

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

h1, h2, h3 { font-family: var(--font-heading); }

/* ========================================
   UTILITIES
   ======================================== */
.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.ornament {
    text-align: center;
    font-size: 1.4rem;
    color: var(--brand-orange);
    letter-spacing: 8px;
    margin: 12px 0;
    opacity: 0.7;
}

/* ========================================
   NEWSPAPER HEADER / MASTHEAD
   ======================================== */
.masthead {
    background-color: var(--parchment-mid);
    border-bottom: var(--border-ink);
    border-top: 5px solid var(--ink-dark);
    padding: 0;
}

.masthead-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 24px;
    border-bottom: var(--border-thin);
    font-size: 0.78rem;
    color: var(--ink-light);
}

.masthead-center {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 16px 24px;
    border-bottom: var(--border-ink);
    position: relative;
}

.masthead-logo {
    width: 90px;
    height: 90px;
    object-fit: contain;
    border-radius: 50%;
    border: var(--border-ink);
    background: var(--parchment-light);
}

.masthead-name {
    text-align: center;
}

.masthead-name h1 {
    font-size: 3.8rem;
    line-height: 1;
    color: var(--ink-dark);
    font-weight: 700;
}

.masthead-name .tagline {
    font-size: 0.92rem;
    letter-spacing: 3px;
    color: var(--ink-light);
    font-weight: 600;
    border-top: var(--border-thin);
    border-bottom: var(--border-thin);
    padding: 4px 0;
    margin-top: 6px;
}

.masthead-nav {
    background-color: var(--brand-orange);
    border-top: 4px double var(--ink-dark);
    border-bottom: 2px solid var(--ink-dark);
    margin: 10px 0 30px;
    padding: 4px 0;
}

.masthead-nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
}

.masthead-nav ul li {
    border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.masthead-nav ul li:last-child { 
    border-left: none; 
}

.masthead-nav ul li a {
    display: block;
    padding: 8px 24px;
    color: var(--parchment-light);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    transition: color 0.3s ease, background-color 0.3s ease;
}

.masthead-nav ul li a:hover {
    color: #fff;
    background-color: rgba(30,15,0,0.1);
}

.nav-scroll-fade {
    display: none;
}

/* ========================================
   HERO – FRONT PAGE STORY
   ======================================== */
.hero {
    padding: 30px 0 20px;
    border-bottom: var(--border-ink);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 0;
    border: var(--border-ink);
    background-color: var(--parchment-light);
    /* Always visible — no scroll reveal on first section */
    opacity: 1 !important;
    transform: none !important;
}

.hero-story {
    padding: 32px 36px;
    border-left: var(--border-ink);
}

.hero-headline {
    font-size: 2.8rem;
    line-height: 1.2;
    color: var(--ink-dark);
    border-bottom: var(--border-orange);
    padding-bottom: 16px;
    margin-bottom: 16px;
}

.hero-byline {
    font-size: 0.82rem;
    color: var(--ink-light);
    border-bottom: var(--border-thin);
    padding-bottom: 10px;
    margin-bottom: 18px;
}

.hero-body {
    column-count: 2;
    column-gap: 28px;
    font-size: 0.97rem;
    line-height: 1.9;
    color: var(--ink-mid);
    text-align: justify;
}

.hero-body p { margin-bottom: 14px; break-inside: avoid; }

.hero-body .dropcap::first-letter {
    font-family: var(--font-heading);
    font-size: 4rem;
    float: right;
    line-height: 0.75;
    margin-left: 10px;
    margin-top: 8px;
    color: var(--brand-orange);
}

.hero-sidebar {
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-sidebar-image {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border: var(--border-ink);
    filter: contrast(1.05);
}

/* ========================================
   READERS CORNER / TESTIMONIALS
   ======================================== */
.readers-section {
    padding: 0 0 60px;
    border-top: var(--border-ink);
    padding-top: 40px;
    background-color: var(--parchment-mid);
}

.readers-header {
    text-align: center;
    margin-bottom: 40px;
}

.readers-subhead {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--ink-mid);
    font-family: var(--font-body);
}

.readers-grid {
    column-count: 3;
    column-gap: 28px;
    margin-bottom: 40px;
}

.letter-card {
    break-inside: avoid;
    margin-bottom: 28px;
    padding: 24px 20px;
    position: relative;
    border: var(--border-ink);
    background-color: var(--parchment-light);
    box-shadow: 3px 3px 0 rgba(30, 15, 0, 0.1);
    transition: transform 0.4s ease;
}

.letter-card:hover {
    transform: translateY(-4px);
    box-shadow: 5px 6px 0 rgba(30, 15, 0, 0.15);
}

.letter-card--featured {
    border: var(--border-orange);
    background-color: #fffaf0;
}

.letter-stamp {
    position: absolute;
    top: 15px;
    left: 15px;
    color: var(--ink-dark);
    border: 2px solid var(--ink-dark);
    padding: 2px 8px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    transform: rotate(-12deg);
    opacity: 0.8;
    pointer-events: none;
}

.letter-stamp--editor {
    color: var(--brand-orange);
    border-color: var(--brand-orange);
    transform: rotate(8deg);
    font-size: 1rem;
}

.letter-body {
    font-family: var(--font-heading);
    font-size: 1.55rem;
    line-height: 1.7;
    color: var(--ink-dark);
    margin-bottom: 20px;
    margin-top: 25px;
}

.letter-sig {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    border-top: 1px dashed var(--ink-light);
    padding-top: 12px;
}

.letter-name {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--brand-orange);
}

.letter-loc {
    font-size: 0.85rem;
    color: var(--ink-light);
}

.letter-editor-note {
    margin-top: 16px;
    padding-top: 12px;
    border-top: var(--border-thin);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--brand-orange);
}

.readers-footer {
    text-align: center;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--ink-mid);
}

/* ========================================
   FOOD GALLERY SECTION
   ======================================== */
.gallery-section {
    padding: 0 0 60px;
    border-top: var(--border-ink);
    padding-top: 40px;
}

.gallery-featured {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 0;
    border: var(--border-ink);
}

.gallery-featured-main {
    position: relative;
    overflow: hidden;
}

.gallery-featured-main img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-featured-main:hover img { transform: scale(1.03); }

.gallery-side {
    display: grid;
    grid-template-rows: 1fr 1fr 1fr;
    border-right: var(--border-ink);
}

.gallery-side-item {
    position: relative;
    overflow: hidden;
    border-bottom: var(--border-ink);
}

.gallery-side-item:last-child { border-bottom: none; }

.gallery-side-item img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-side-item:hover img { transform: scale(1.06); }

.gallery-caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(30,15,0,0.78));
    color: var(--parchment-light);
    font-family: var(--font-heading);
    font-size: 1.05rem;
    padding: 18px 14px 10px;
    pointer-events: none;
}

.gallery-side-item .gallery-caption { font-size: 0.88rem; padding: 12px 10px 6px; }

.gallery-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: var(--border-ink);
    border-top: none;
}

.gallery-cell {
    position: relative;
    overflow: hidden;
    border-left: var(--border-ink);
}

.gallery-cell:first-child { border-left: none; }

.gallery-cell img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-cell:hover img { transform: scale(1.06); }

.gallery-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: var(--border-ink);
    border-top: none;
}

.gallery-grid-3 .gallery-cell img { height: 220px; }

.gallery-full {
    border: var(--border-ink);
    border-top: none;
    overflow: hidden;
    position: relative;
}

.gallery-full img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: center 40%;
    display: block;
    transition: transform 0.6s ease;
}

.gallery-full:hover img { transform: scale(1.02); }

@media (max-width: 900px) {
    .gallery-featured { grid-template-columns: 1fr; }
    .gallery-side { grid-template-columns: repeat(3, 1fr); grid-template-rows: auto; border-right: none; border-top: var(--border-ink); }
    .gallery-side-item img { height: 110px; }
    .gallery-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid-3 { grid-template-columns: repeat(2, 1fr); }
    .gallery-cell img { height: 160px; }
    .gallery-featured-main img { height: 280px; }
}


.sidebar-box {
    border: var(--border-ink);
    padding: 16px;
    background-color: var(--parchment-mid);
}

.sidebar-box h3 {
    font-size: 1.3rem;
    color: var(--brand-orange);
    border-bottom: var(--border-thin);
    padding-bottom: 8px;
    margin-bottom: 10px;
}

.sidebar-box p {
    font-size: 0.88rem;
    color: var(--ink-mid);
    line-height: 1.8;
}

/* ========================================
   SECTION DIVIDER
   ======================================== */
.section-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 40px 0 30px;
    text-align: center;
}

.section-divider::before,
.section-divider::after {
    content: '';
    flex: 1;
    border-top: var(--border-ink);
}

.section-divider h2 {
    font-size: 2.2rem;
    white-space: nowrap;
    color: var(--ink-dark);
    padding: 0 10px;
}

/* ========================================
   MENU BOXES (traditional card style)
   ======================================== */
.menu-section { padding: 0 0 60px; }

.menu-boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: var(--border-ink);
}

.menu-box {
    border-left: var(--border-ink);
    padding: 0;
    transition: var(--transition);
}

.menu-box:last-child { border-left: none; }

.menu-box-header {
    background-color: var(--brand-orange);
    padding: 12px 18px;
    text-align: center;
}

.menu-box-header h3 {
    font-size: 1.6rem;
    color: var(--parchment-light);
}

.menu-box-body {
    padding: 18px;
    background-color: var(--parchment-light);
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 8px 0;
    border-bottom: 1px dashed var(--parchment-dark);
    font-size: 0.95rem;
    color: var(--ink-mid);
    gap: 10px;
}

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

.menu-item-name { font-weight: 600; }
.menu-item-desc { font-size: 0.78rem; color: var(--ink-light); display: block; }

.menu-item-price {
    white-space: nowrap;
    font-family: var(--font-heading);
    color: var(--brand-orange);
    font-size: 1.05rem;
}

/* ========================================
   CATERING SECTION
   ======================================== */
.catering-section {
    padding: 0 0 60px;
    background-color: var(--parchment-light);
}

.catering-box {
    display: flex;
    border: 4px double var(--ink-dark);
    background-color: #fffaf0;
    margin-top: 10px;
    align-items: stretch;
}

.catering-content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.catering-content h3 {
    font-size: 2.2rem;
    color: var(--brand-orange);
    margin-bottom: 16px;
    border-bottom: 2px dashed var(--brand-orange);
    padding-bottom: 10px;
}

.catering-content p {
    font-size: 1.1rem;
    color: var(--ink-dark);
    margin-bottom: 16px;
    line-height: 1.8;
}

.catering-image {
    flex: 1;
    border-right: 4px double var(--ink-dark);
}

.catering-image img {
    width: 100%;
    height: 100%;
    min-height: 350px;
    object-fit: cover;
    filter: sepia(20%) contrast(1.1);
}

.catering-btn {
    display: inline-block;
    background-color: var(--ink-dark);
    color: var(--parchment-light);
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    padding: 12px 24px;
    margin-top: 15px;
    border: 2px solid var(--ink-dark);
    transition: var(--transition);
    align-self: flex-start;
}

.catering-btn:hover {
    background-color: var(--brand-orange);
    border-color: var(--brand-orange);
    transform: translateY(-2px);
    color: #fff;
}

/* ========================================
   TREASURE MAP SECTION
   ======================================== */
.treasure-map-section {
    padding: 0 0 80px;
    background-color: var(--parchment-mid);
}

.map-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    border: 6px double var(--ink-dark);
    padding: 6px;
    background-color: var(--parchment-light);
    box-shadow: inset 0 0 60px rgba(139, 69, 19, 0.15), 0 10px 40px rgba(0,0,0,0.2);
}

.treasure-map {
    position: relative;
    width: 100%;
    height: 500px;
    background-color: #f7eedb;
    background-image: radial-gradient(circle at center, transparent 0%, rgba(139, 69, 19, 0.1) 100%), 
                      repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(139, 69, 19, 0.03) 10px, rgba(139, 69, 19, 0.03) 20px);
    overflow: hidden;
}

.map-svg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
}

/* Pins */
.map-pin {
    position: absolute;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    z-index: 10;
}

.pin-icon {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--brand-orange);
    font-weight: 900;
    text-shadow: 2px 2px 0px var(--ink-dark);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    line-height: 1;
}

.map-pin:hover .pin-icon, .map-pin:focus .pin-icon {
    transform: scale(1.3) rotate(15deg);
}

.pin-label {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--ink-dark);
    font-weight: 700;
    margin-top: 5px;
    background: rgba(247, 238, 219, 0.9);
    padding: 2px 10px;
    border-radius: 4px;
    border: 1px dashed var(--ink-mid);
    white-space: nowrap;
}

/* Card Popup */
.pin-card {
    position: absolute;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 240px;
    background: var(--parchment-light);
    border: 3px double var(--ink-dark);
    padding: 20px;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 20;
    box-shadow: 0 5px 25px rgba(0,0,0,0.3);
}

.pin-card::after {
    content: '';
    position: absolute;
    bottom: -11px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 10px 10px 0 10px;
    border-style: solid;
    border-color: var(--ink-dark) transparent transparent transparent;
}

.map-pin:hover .pin-card, .map-pin:focus .pin-card, .map-pin.active .pin-card {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Modifiers for top pins to open downwards */
.map-pin.pin-down .pin-card {
    bottom: auto;
    top: 120%;
    transform: translateX(-50%) translateY(-10px);
}

.map-pin.pin-down:hover .pin-card, .map-pin.pin-down:focus .pin-card, .map-pin.pin-down.active .pin-card {
    transform: translateX(-50%) translateY(0);
}

.map-pin.pin-down .pin-card::after {
    bottom: auto;
    top: -11px;
    border-width: 0 10px 10px 10px;
    border-color: transparent transparent var(--ink-dark) transparent;
}

.pin-card h3 {
    font-size: 1.5rem;
    color: var(--brand-orange);
    margin-bottom: 8px;
    border-bottom: 1px dashed var(--ink-light);
    padding-bottom: 4px;
}

.pin-card p {
    font-size: 1rem;
    color: var(--ink-dark);
    margin-bottom: 15px;
    font-weight: 600;
}

.pin-card a {
    display: inline-block;
    width: 100%;
    padding: 8px 0;
    margin-bottom: 8px;
    font-family: var(--font-heading);
    color: var(--parchment-light);
    background-color: var(--ink-dark);
    text-decoration: none;
    font-size: 1.1rem;
    transition: background 0.3s;
}

.pin-card a:last-child { margin-bottom: 0; background: var(--brand-orange); }
.pin-card a:hover { opacity: 0.9; }

/* ========================================
   STORY SECTION (Traditions + Culture)
   ======================================== */
.culture-section {
    padding: 0 0 60px;
    border-top: var(--border-ink);
    padding-top: 40px;
}

.culture-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: var(--border-ink);
}

.culture-text {
    padding: 32px;
    border-left: var(--border-ink);
}

.culture-text h2 {
    font-size: 2rem;
    line-height: 1.25;
    color: var(--ink-dark);
    margin-bottom: 6px;
}

.culture-text .subhead {
    font-size: 0.85rem;
    color: var(--brand-orange);
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 18px;
    border-bottom: var(--border-thin);
    padding-bottom: 10px;
}

.culture-text p {
    font-size: 0.97rem;
    color: var(--ink-mid);
    line-height: 2;
    text-align: justify;
    margin-bottom: 14px;
}

.culture-image-col {
    display: flex;
    flex-direction: column;
}

.culture-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: sepia(30%) contrast(1.07);
    min-height: 300px;
}

/* ========================================
   CHEFS SECTION
   ======================================== */
.chefs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: var(--border-ink);
}

.chef-card {
    display: flex;
    flex-direction: column;
    border-left: var(--border-ink);
}

.chef-card:first-child { border-left: none; }

.chef-img-wrap {
    overflow: hidden;
    border-bottom: var(--border-ink);
}

.chef-img-wrap img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    object-position: center top;
    display: block;
    filter: sepia(20%) contrast(1.08);
    transition: transform 0.5s ease;
}

.chef-card:hover .chef-img-wrap img { transform: scale(1.04); }

.chef-body {
    padding: 28px 30px;
    background-color: var(--parchment-light);
    flex: 1;
}

.chef-body h3 {
    font-size: 1.9rem;
    color: var(--ink-dark);
    border-bottom: var(--border-orange);
    padding-bottom: 10px;
    margin-bottom: 8px;
}

.chef-body .chef-title {
    font-size: 0.82rem;
    color: var(--brand-orange);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
    border-bottom: var(--border-thin);
    padding-bottom: 10px;
}

.chef-body p {
    font-size: 0.97rem;
    color: var(--ink-mid);
    line-height: 2;
    text-align: justify;
}

@media (max-width: 900px) {
    .chefs-grid { grid-template-columns: 1fr; }
    .chef-card { border-left: none; border-top: var(--border-ink); }
    .chef-card:first-child { border-top: none; }
    .chef-img-wrap img { height: 240px; }
}

/* ========================================
   URGENT NEWS BANNER (خبر عاجل style)
   ======================================== */
.breaking-banner {
    background-color: var(--brand-orange);
    border-top: 3px solid var(--ink-dark);
    border-bottom: 3px solid var(--ink-dark);
    padding: 18px 0;
    margin: 40px 0;
    text-align: center;
}

.breaking-banner .breaking-label {
    display: inline-block;
    color: var(--parchment-light);
    font-family: var(--font-heading);
    font-size: 2.1rem;
    padding: 4px 18px;
    margin-bottom: 10px;
}

.breaking-banner p {
    color: var(--parchment-light);
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.8;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background-color: var(--ink-dark);
    color: var(--parchment-mid);
    padding: 50px 0 20px;
    border-top: 5px solid var(--brand-orange);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--brand-orange);
    border-bottom: 1px solid rgba(255,255,255,0.15);
    padding-bottom: 10px;
    margin-bottom: 14px;
}

.footer-col p, .footer-col a {
    font-size: 0.9rem;
    color: var(--parchment-dark);
    line-height: 2.1;
    display: block;
    transition: var(--transition);
}

.footer-col a:hover { color: var(--brand-orange-light); }

.footer-logo-col {
    text-align: center;
}

.footer-logo-col img {
    width: 100px;
    border-radius: 50%;
    margin: 0 auto 14px;
    border: 2px solid var(--brand-orange);
    filter: brightness(0.9);
}

.footer-logo-col p {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--parchment-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 0.82rem;
    color: var(--ink-light);
    opacity: 0.6;
}

/* ========================================
   SCROLL ANIMATIONS
   ======================================== */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hero is always rendered immediately */
.hero-grid {
    opacity: 1 !important;
    transform: none !important;
}

/* ========================================
   GO UP STAMP BUTTON
   ======================================== */
.stamp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: transparent;
    color: var(--brand-orange);
    border: 3px double var(--brand-orange);
    border-radius: 4px;
    padding: 8px 18px;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    cursor: pointer;
    transform: rotate(10deg);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.3s ease, background-color 0.3s ease;
    z-index: 999;
}

.stamp-btn.show {
    opacity: 0.85;
    visibility: visible;
}

.stamp-btn:hover {
    transform: rotate(0deg) scale(1.08);
    background-color: rgba(177, 76, 22, 0.08);
    opacity: 1;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-body { column-count: 1; }
    .hero-sidebar { border-top: var(--border-ink); }
    .hero-story { border-left: none; }
    .menu-boxes { grid-template-columns: 1fr; }
    .menu-box { border-left: none; border-top: var(--border-ink); }
    .menu-box:first-child { border-top: none; }
    
    .treasure-map { height: 400px; }
    .pin-icon { font-size: 2.2rem; }
    .pin-label { font-size: 1rem; }
    .pin-card { width: 200px; padding: 15px; }
    
    .catering-box { flex-direction: column-reverse; }
    .catering-image { border-right: none; border-bottom: 4px double var(--ink-dark); }
    .catering-image img { min-height: 250px; }
    .catering-content { padding: 30px 20px; text-align: center; align-items: center; }
    .catering-content h3 { font-size: 1.8rem; }
    
    .readers-grid { column-count: 2; }
    .culture-grid { grid-template-columns: 1fr; }
    .culture-text { border-left: none; border-top: var(--border-ink); }
    .culture-image-col { min-height: 280px; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .masthead-nav ul { flex-wrap: wrap; }
    .masthead-nav ul li a { padding: 10px 16px; font-size: 0.9rem; }
    .masthead-name h1 { font-size: 2.6rem; }
    .hero-headline { font-size: 2rem; }
}

@media (max-width: 480px) {
    /* Base Container & Header */
    .container { padding: 0 15px; }
    .masthead-name h1 { font-size: 1.8rem; }
    .masthead-name .tagline { font-size: 0.75rem; letter-spacing: 1px; }
    .masthead-logo { width: 60px; height: 60px; }
    .masthead-center { gap: 10px; padding: 12px 10px; flex-wrap: wrap; }
    .masthead-top { flex-direction: column; gap: 6px; text-align: center; }
    
    /* Navigation Bar horizontal scroll */
    .masthead-nav { margin: 15px 0 20px; background-color: var(--brand-orange); border-top: 2px solid var(--ink-dark); border-bottom: 2px solid var(--ink-dark); padding: 8px 0; }
    .masthead-nav .container { padding: 0; }
    
    .nav-scroll-fade {
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 50px;
        background: linear-gradient(to right, var(--brand-orange) 30%, rgba(177,76,22,0));
        pointer-events: none;
        z-index: 10;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding-left: 6px;
        color: var(--parchment-light);
        transition: opacity 0.4s ease;
    }
    
    .nav-scroll-fade svg {
        width: 20px;
        height: 20px;
        opacity: 0.9;
        animation: nudgeLeft 1.5s infinite ease-in-out;
    }
    
    @keyframes nudgeLeft {
        0%, 100% { transform: translateX(0); }
        50% { transform: translateX(-5px); }
    }

    .masthead-nav ul { 
        flex-direction: row; 
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        justify-content: flex-start;
        align-items: center;
        width: 100%;
        border-top: none;
        padding-left: 15px;
        padding-right: 15px;
        padding-bottom: 5px;
        gap: 12px;
    }
    .masthead-nav ul::-webkit-scrollbar { display: none; }
    .masthead-nav ul { -ms-overflow-style: none; scrollbar-width: none; }
    
    .masthead-nav ul li { 
        flex: 0 0 auto;
        width: auto; 
        text-align: center; 
        border-left: 1px solid rgba(255, 255, 255, 0.3);
    }
    .masthead-nav ul li:last-child {
        border-left: none;
    }
    
    .masthead-nav ul li a { 
        padding: 4px 18px; 
        white-space: nowrap; 
        font-size: 1.2rem; 
        font-family: var(--font-heading);
        font-weight: 700;
        background-color: transparent;
        border: none;
        border-radius: 0;
        color: var(--parchment-light);
        box-shadow: none;
    }
    
    .masthead-nav ul li a:hover, .masthead-nav ul li a:active { 
        background-color: rgba(30,15,0,0.1);
        color: #fff;
    }
    
    /* Hero Section */
    .hero-headline { font-size: 1.6rem; }
    .hero-story { padding: 20px 15px; }
    .hero-body .dropcap::first-letter { font-size: 3rem; margin-top: 4px; }
    
    /* Dividers */
    .section-divider h2 { font-size: 1.5rem; white-space: normal; line-height: 1.4; padding: 0 10px; }
    
    /* Readers & Gallery */
    .readers-grid { column-count: 1; }
    .letter-body { font-size: 1.35rem; }
    .gallery-grid-4, .gallery-grid-3 { grid-template-columns: 1fr; }
    .gallery-cell { border-left: none; border-top: var(--border-ink); }
    .gallery-cell:first-child { border-top: none; }
    .gallery-cell img, .gallery-side-item img { height: 220px; }
    .gallery-featured-main img { height: 240px; }
    .gallery-caption { font-size: 1rem; padding: 14px 12px 8px; }
    
    /* Breaking News Banner */
    .breaking-banner { padding: 15px 10px; margin: 30px 0; }
    .breaking-banner p { font-size: 0.95rem; }
    
    /* Pushing inner paddings down for tiny screens */
    .culture-text, .chef-body { padding: 20px 15px; }
    .chef-body h3 { font-size: 1.5rem; }
    .menu-box-body { padding: 15px 12px; }
    
    /* Footer & Stamp */
    .footer-col h4 { font-size: 1.2rem; }
    
    .stamp-btn {
        bottom: 20px;
        right: 20px;
        font-size: 1.1rem;
        padding: 6px 14px;
    }
}
