/*
Theme Name: BAKED.
Theme URI: https://bakedonearshamstreet.co.uk
Author: BAKED.
Author URI: https://bakedonearshamstreet.co.uk
Description: A warm, artisan WordPress theme for BAKED. bakery on Earsham Street. Features a one-page design with hero, about, gallery, ordering, Instagram feed, and contact sections.
Version: 1.0.1
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: baked
Tags: one-column, custom-menu, custom-logo, featured-images, theme-options, food-and-drink
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
*/

/* ─── RESET & VARIABLES ─── */
:root {
  --cream: #F5F0E8;
  --warm-white: #FAF7F2;
  --latte: #E8DFD0;
  --caramel: #C4956A;
  --terracotta: #B5704F;
  --espresso: #3B2A1E;
  --charcoal: #2C2320;
  --soft-brown: #8B6F5E;
  --flour: #EDE8DE;
  --gold: #D4A853;
  --sage: #9BAA8E;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--warm-white);
  color: var(--espresso);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a, a:visited, a:hover, a:active,
.nav-menu a, .nav-menu li a,
.footer-col a, .footer-col ul li a,
.mobile-nav a { text-decoration: none; color: inherit; }

.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 0.7rem; }

/* ─── GRAIN OVERLAY ─── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 256px;
}

/* ─── NAV ─── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.5s ease;
  background: transparent;
}

.site-nav.scrolled {
  background: rgba(245, 240, 232, 0.92);
  backdrop-filter: blur(20px);
  padding: 0.9rem 3rem;
  box-shadow: 0 2px 30px rgba(59, 42, 30, 0.06);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 1.8rem;
  letter-spacing: 0.15em;
  color: var(--espresso);
}
.nav-logo span { color: var(--terracotta); }

.nav-menu {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-menu a,
.nav-menu li a,
.nav-menu .menu-item a {
  color: var(--soft-brown);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none !important;
  position: relative;
  transition: color 0.3s;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--terracotta);
  transition: width 0.3s ease;
}

.nav-menu a:hover { color: var(--terracotta); }
.nav-menu a:hover::after { width: 100%; }
.nav-menu .current-menu-item a,
.nav-menu .current_page_item a { color: var(--terracotta); }
.nav-menu .current-menu-item a::after,
.nav-menu .current_page_item a::after { width: 100%; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}
.nav-hamburger span {
  width: 26px;
  height: 2px;
  background: var(--espresso);
  transition: 0.3s;
}

/* Mobile nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: rgba(59, 42, 30, 0.97);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.mobile-nav.open { opacity: 1; pointer-events: all; }

.mobile-nav a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--cream);
  transition: color 0.3s;
}

.mobile-nav a:hover { color: var(--terracotta); }

.mobile-nav-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 2rem;
  cursor: pointer;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 2.2rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.4s ease;
  cursor: pointer;
  border: none;
  font-family: 'DM Sans', sans-serif;
}

.btn-primary {
  background: var(--terracotta);
  color: white;
  box-shadow: 0 8px 30px rgba(181, 112, 79, 0.3);
}
.btn-primary:hover {
  background: var(--espresso);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(59, 42, 30, 0.25);
}

.btn-outline {
  background: transparent;
  color: var(--espresso);
  border: 1.5px solid var(--soft-brown);
}
.btn-outline:hover {
  border-color: var(--terracotta);
  color: var(--terracotta);
}

/* ─── SECTION COMMON ─── */
.baked-section { padding: 7rem 4rem; }

.section-tag {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 500;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.section-tag::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--terracotta);
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: var(--charcoal);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

/* ─── HERO ─── */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--cream) 0%, var(--latte) 50%, var(--flour) 100%);
}

.hero-texture {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 75% 40%, rgba(196, 149, 106, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(181, 112, 79, 0.08) 0%, transparent 50%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 4rem;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text { animation: fadeUp 1s ease 0.3s both; }

.hero-tag {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 500;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hero-tag::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--terracotta);
}

.hero-section h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(3.5rem, 7vw, 7rem);
  line-height: 0.95;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-section h1 em {
  font-style: italic;
  color: var(--terracotta);
  font-weight: 300;
}

.hero-desc {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--soft-brown);
  max-width: 440px;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-visual {
  position: relative;
  animation: fadeUp 1s ease 0.6s both;
}

.hero-img-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 200px 200px 20px 20px;
  overflow: hidden;
  background: var(--latte);
  box-shadow: 0 40px 80px rgba(59, 42, 30, 0.15);
}

.hero-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  bottom: 2rem;
  left: -2rem;
  background: var(--charcoal);
  color: var(--cream);
  padding: 1.4rem 1.8rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(44, 35, 32, 0.3);
  animation: float 4s ease-in-out infinite;
}

.hero-badge-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1;
  color: var(--gold);
}

.hero-badge-text {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 0.3rem;
  opacity: 0.7;
}

/* ─── HERO: FULL-WIDTH LAYOUT ─── */
.hero-layout-fullwidth {
  position: relative;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-fullwidth-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-fullwidth-content {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 4rem;
  width: 100%;
  animation: fadeUp 1s ease 0.3s both;
}

.hero-layout-fullwidth h1 em {
  color: var(--gold);
}

.hero-layout-fullwidth h1,
.hero-layout-fullwidth .hero-desc {
  text-shadow: 0 2px 20px rgba(0,0,0,0.5), 0 1px 4px rgba(0,0,0,0.3);
}

.hero-layout-fullwidth .hero-tag::before {
  background: rgba(255,255,255,0.4);
}

/* ─── HERO: VIDEO BACKGROUND ─── */
.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* ─── HERO: CENTRED TEXT LAYOUT ─── */
.hero-layout-centered {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-centered-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 4rem;
  animation: fadeUp 1s ease 0.3s both;
}

.hero-layout-centered .hero-tag::before { display: none; }
.hero-layout-centered .hero-tag::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--terracotta);
}

/* ─── EXTRA CONTENT BLOCKS ─── */
.baked-extra-content {
  font-family: 'DM Sans', sans-serif;
  color: var(--espresso);
  line-height: 1.8;
  font-weight: 300;
}

.baked-extra-content h2,
.baked-extra-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  color: var(--charcoal);
}

.baked-extra-content img {
  max-width: 100%;
  height: auto;
  border-radius: 14px;
}

/* ─── RESPONSIVE: NEW LAYOUTS ─── */
@media (max-width: 768px) {
  .hero-fullwidth-content,
  .hero-centered-content {
    padding: 0 1.5rem;
  }
  .hero-layout-fullwidth,
  .hero-layout-centered {
    min-height: 70vh !important;
    padding: 6rem 0 3rem;
  }
}

/* ─── MARQUEE ─── */
.marquee-section {
  padding: 1.8rem 0;
  background: var(--charcoal);
  overflow: hidden;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 25s linear infinite;
}

.marquee-item {
  flex-shrink: 0;
  padding: 0 3rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--cream);
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 3rem;
  white-space: nowrap;
}

.marquee-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--terracotta);
  flex-shrink: 0;
}

/* ─── ABOUT ─── */
.about-section {
  background: var(--cream);
}

.about-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}

.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.about-img {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--latte);
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img:nth-child(2) { margin-top: 3rem; }

.about-text p {
  color: var(--soft-brown);
  line-height: 1.9;
  font-weight: 300;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.about-values {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--latte);
}

.about-value h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 0.3rem;
  color: var(--charcoal);
}

.about-value p {
  font-size: 0.85rem !important;
  margin-bottom: 0 !important;
}

/* ─── GALLERY ─── */
.gallery-section { background: var(--warm-white); }

.gallery-header {
  max-width: 1300px;
  margin: 0 auto 3rem;
}

.gallery-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
}

.gallery-item {
  border-radius: 14px;
  overflow: hidden;
  background: var(--latte);
  aspect-ratio: 1;
  position: relative;
  cursor: pointer;
  transition: transform 0.4s ease;
}

.gallery-item:hover { transform: scale(0.97); }

.gallery-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(59, 42, 30, 0.6), transparent 50%);
  opacity: 0;
  transition: opacity 0.4s;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

.gallery-item:hover .gallery-item-overlay { opacity: 1; }

.gallery-item-label {
  color: white;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* ─── ORDER ─── */
.order-section {
  background: var(--charcoal);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.order-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 40% 60% at 10% 50%, rgba(181, 112, 79, 0.1), transparent),
    radial-gradient(ellipse 50% 40% at 90% 30%, rgba(212, 168, 83, 0.06), transparent);
}

.order-inner {
  position: relative;
  max-width: 1300px;
  margin: 0 auto;
  text-align: center;
}

.order-section .section-title { color: var(--cream); }
.order-section .section-tag { justify-content: center; color: var(--gold); }
.order-section .section-tag::before { background: var(--gold); }

.order-desc {
  max-width: 560px;
  margin: 0 auto 3.5rem;
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(245, 240, 232, 0.65);
  font-weight: 300;
}

.order-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.order-card {
  background: rgba(245, 240, 232, 0.06);
  border: 1px solid rgba(245, 240, 232, 0.1);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: left;
  transition: all 0.4s ease;
}

.order-card:hover {
  background: rgba(245, 240, 232, 0.1);
  border-color: rgba(181, 112, 79, 0.3);
  transform: translateY(-4px);
}

.order-card-img {
  width: 100%;
  aspect-ratio: 16/10;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  background: rgba(245, 240, 232, 0.08);
}

.order-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.order-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 0.7rem;
  color: var(--cream);
}

.order-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(245, 240, 232, 0.5);
  font-weight: 300;
}

/* ─── INSTAGRAM ─── */
.instagram-section { background: var(--cream); }

.insta-header {
  max-width: 1300px;
  margin: 0 auto 3rem;
  text-align: center;
}

.insta-handle {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--terracotta);
  font-weight: 500;
  font-size: 0.9rem;
  margin-top: 0.8rem;
  transition: gap 0.3s;
}
.insta-handle:hover { gap: 1rem; }

.insta-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.8rem;
}

.insta-item {
  aspect-ratio: 1;
  border-radius: 14px;
  overflow: hidden;
  background: var(--latte);
  position: relative;
  cursor: pointer;
  transition: transform 0.3s;
}

.insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.insta-item:hover { transform: scale(0.96); }

.insta-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(59, 42, 30, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.insta-item:hover .insta-item-overlay { opacity: 1; }

.insta-item-overlay svg {
  width: 28px;
  height: 28px;
  fill: white;
}

/* ─── CONTACT ─── */
.contact-section { background: var(--warm-white); }

.contact-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info-blocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
}

.contact-block h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 400;
  margin-bottom: 0.6rem;
  color: var(--charcoal);
}

.contact-block p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--soft-brown);
  font-weight: 300;
}

.contact-map {
  border-radius: 20px;
  overflow: hidden;
  background: var(--latte);
  min-height: 400px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: 0;
}

/* ─── FOOTER ─── */
.site-footer {
  background: var(--charcoal);
  color: var(--cream);
  padding: 4rem 4rem 2rem;
}

.footer-top {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(245, 240, 232, 0.1);
}

.footer-brand .nav-logo {
  color: var(--cream);
  margin-bottom: 1rem;
  display: block;
}

.footer-brand p {
  color: rgba(245, 240, 232, 0.45);
  font-size: 0.9rem;
  line-height: 1.7;
  font-weight: 300;
  max-width: 300px;
}

.footer-col h5 {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.4);
  margin-bottom: 1.2rem;
}

.footer-col a,
.footer-col li a,
.footer-col ul li a,
.footer-col .menu-item a {
  display: block;
  color: rgba(245, 240, 232, 0.7);
  font-size: 0.9rem;
  margin-bottom: 0.7rem;
  transition: color 0.3s;
  font-weight: 300;
  text-decoration: none !important;
}

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

.footer-col a:hover { color: var(--terracotta); }

.footer-bottom {
  max-width: 1300px;
  margin: 1.5rem auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(245, 240, 232, 0.3);
}

.footer-social {
  display: flex;
  gap: 1.2rem;
}

.footer-social a {
  color: rgba(245, 240, 232, 0.4);
  transition: color 0.3s;
  font-size: 1rem;
}

.footer-social a:hover { color: var(--terracotta); }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .baked-section { padding: 5rem 2.5rem; }
  .hero-content { grid-template-columns: 1fr; gap: 3rem; padding: 0 2.5rem; padding-top: 6rem; }
  .hero-visual { max-width: 400px; margin: 0 auto; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .order-cards { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .insta-item:nth-child(4), .insta-item:nth-child(5) { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .site-nav { padding: 1rem 1.5rem; }
  .site-nav.scrolled { padding: 0.8rem 1.5rem; }
  .nav-menu { display: none; }
  .nav-hamburger { display: flex; }
  .baked-section { padding: 4rem 1.5rem; }
  .hero-section { min-height: auto; padding: 6rem 0 3rem; }
  .hero-section h1 { font-size: 3rem; }
  .about-images { grid-template-columns: 1fr 1fr; }
  .about-values { flex-direction: column; gap: 1.5rem; }
  .order-cards { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .gallery-item:nth-child(5), .gallery-item:nth-child(6) { display: none; }
  .contact-info-blocks { grid-template-columns: 1fr; }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
  .insta-item:nth-child(3) { display: none; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .site-footer { padding: 3rem 1.5rem 2rem; }
}
