/* ===== CSS RESET & VARIABLES ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --white: #ffffff;
  --black: #111111;
  --gray-light: #f5f5f5;
  --gray-mid: #888888;
  --border: #dddddd;
  --accent: #3a3a3a;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Barlow', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 70px;
  border-bottom: 1px solid var(--border);
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-left a {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--black);
  transition: color 0.2s;
}

.nav-left a:hover {
  color: var(--gray-mid);
}

.nav-left a.has-dropdown span {
  font-size: 10px;
  margin-left: 2px;
}

.nav-left a:nth-child(2) {
  padding-bottom: 2px;
  border-bottom: 2px solid var(--black);
}

/* Center Logo */
.nav-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.logo-brush {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--black);
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 50'%3E%3Cpath d='M5 35 Q30 10 80 20 Q130 30 155 15' stroke='%23b0a89c' stroke-width='18' fill='none' stroke-linecap='round' opacity='0.5'/%3E%3C/svg%3E") no-repeat center bottom / 120%;
  padding: 4px 16px 8px;
}

/* Nav Right */
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  transition: color 0.2s;
}

.icon-btn:hover {
  color: var(--gray-mid);
}

.cart-btn {
  position: relative;
}

.cart-badge {
  position: absolute;
  top: -4px;
  right: -6px;
  background: var(--gray-mid);
  color: var(--white);
  border-radius: 50%;
  width: 16px;
  height: 16px;
  font-size: 10px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── NO SCROLL ── */
body.no-scroll { overflow: hidden; }

/* ── NAVBAR SCROLL SHRINK ── */
.navbar {
  transition: height 0.35s ease, box-shadow 0.35s ease;
}
.navbar.scrolled {
  height: 56px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

/* ── Hamburger ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 301;
  position: relative;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: transform 0.38s cubic-bezier(.23,1,.32,1),
              opacity 0.28s ease;
  transform-origin: center;
}

/* ── BACKDROP ── */
.menu-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 298;
  backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.menu-backdrop.active {
  display: block;
  opacity: 1;
}

/* ── RIGHT-SIDE MOBILE DRAWER ── */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 88vw);
  height: 100dvh;
  background: var(--white);
  z-index: 300;
  display: flex;
  flex-direction: column;
  padding: 0;
  box-shadow: -8px 0 40px rgba(0,0,0,0.15);
  transform: translateX(110%);
  transition: transform 0.42s cubic-bezier(.23,1,.32,1);
  overflow-y: auto;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px 18px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: var(--white);
  z-index: 1;
}

.mobile-logo {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--black);
}

.mobile-close-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--black);
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  transition: background 0.2s;
}
.mobile-close-btn:hover { background: var(--gray-light); }

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  padding: 12px 0;
  flex: 1;
}

.mobile-nav-links a {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.10em;
  color: var(--black);
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transform: translateX(20px);
  transition: background 0.2s,
              opacity 0.35s ease calc(var(--i) * 60ms + 80ms),
              transform 0.40s cubic-bezier(.23,1,.32,1) calc(var(--i) * 60ms + 80ms);
}
.mobile-nav-links a::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--black);
  flex-shrink: 0;
}
.mobile-nav-links a:hover { background: var(--gray-light); }
.mobile-nav-links a:last-child { border-bottom: none; }

.mobile-menu.open .mobile-nav-links a {
  opacity: 1;
  transform: translateX(0);
}

.mobile-menu-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--border);
}

.mobile-search-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--gray-light);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--black);
  cursor: pointer;
  width: 100%;
  transition: background 0.2s;
}
.mobile-search-btn:hover { background: #ebebeb; }

/* ── SEARCH OVERLAY ── */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  z-index: 500;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 100px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.search-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.search-overlay-inner {
  width: min(660px, 90vw);
  position: relative;
  display: flex;
  align-items: center;
  border-bottom: 2px solid var(--black);
  transform: translateY(20px);
  transition: transform 0.4s cubic-bezier(.23,1,.32,1) 0.1s;
}

.search-overlay.active .search-overlay-inner {
  transform: translateY(0);
}

.search-overlay-input {
  width: 100%;
  border: none;
  outline: none;
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  color: var(--black);
  padding: 16px 56px 16px 4px;
  background: transparent;
  caret-color: var(--black);
}

.search-overlay-input::placeholder {
  color: #bbb;
  font-weight: 400;
}

.search-close-btn {
  position: absolute;
  right: 0;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--black);
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}
.search-close-btn:hover { opacity: 0.5; }

.search-suggestions {
  margin-top: 28px;
  width: min(660px, 90vw);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s ease 0.2s, transform 0.4s ease 0.2s;
}
.search-overlay.active .search-suggestions {
  opacity: 1;
  transform: translateY(0);
}

.search-hint {
  font-size: 14px;
  color: var(--gray-mid);
  letter-spacing: 0.04em;
}

.search-hint span {
  display: inline-block;
  margin: 4px 6px 4px 0;
  padding: 6px 14px;
  background: var(--gray-light);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--black);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.search-hint span:hover {
  background: var(--black);
  color: var(--white);
  transform: translateY(-2px);
}

.search-trigger {
  transition: transform 0.25s ease, color 0.2s;
}
.search-trigger:hover { transform: scale(1.15); }

/* ── SCROLL-REVEAL ANIMATIONS ── */
.reveal-ready {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.65s cubic-bezier(.23,1,.32,1),
              transform 0.65s cubic-bezier(.23,1,.32,1);
}

.reveal-ready.revealed {
  opacity: 1;
  transform: translateY(0);
}

.feature-card.reveal-ready {
  transform: translateY(28px) scale(0.97);
}
.feature-card.revealed {
  transform: translateY(0) scale(1);
}

.gallery-item.reveal-ready {
  transform: translateY(40px) scale(0.96);
}
.gallery-item.revealed {
  transform: translateY(0) scale(1);
}

/* ===== HERO SECTION ===== */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: calc(100vh - 70px);
  padding: 60px 80px 40px 80px;
  gap: 40px;
  background: var(--white);
}

/* Left Content */
.hero-content {
  flex: 1;
  margin-left: 0px;
  max-width: 480px;
  animation: fadeSlideUp 0.7s ease both;
}

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-tag {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--gray-mid);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 700;
  color: var(--black);
  line-height: 1.1;
  margin-bottom: 28px;
}

.hero-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.hero-info p {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: var(--black);
}

.info-icon {
  flex-shrink: 0;
  color: var(--black);
}

.hero-hours {
  margin-bottom: 36px;
}

.hero-hours p {
  font-size: 15px;
  color: var(--black);
  line-height: 1.8;
}

/* CTA Button */
.btn-view {
  display: inline-block;
  padding: 16px 36px;
  border: 1.5px solid var(--black);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--black);
  background: transparent;
  text-transform: uppercase;
  transition: background 0.25s, color 0.25s;
  border-radius: 4px;
  margin-bottom: 28px;
}

.btn-view:hover {
  background: var(--black);
  color: var(--white);
}

.image-credit {
  font-size: 12px;
  color: var(--gray-mid);
}

.image-credit a {
  color: var(--gray-mid);
  text-decoration: underline;
}

/* Right Image */
.hero-image {
  margin-left: 0px;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.9s ease 0.2s both;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.97); }
  to   { opacity: 1; transform: scale(1); }
}

.circle-frame {
  width: min(460px, 90vw);
  height: min(460px, 90vw);
  border-radius: 50%;
  overflow: hidden;
  background: #e8e2db;
}

.circle-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* ===== RESPONSIVE: Large Tablet (max 1024px) ===== */
@media (max-width: 1024px) {
  .hero {
    padding: 50px 48px 40px;
    gap: 32px;
  }

  .circle-frame {
    width: min(380px, 85vw);
    height: min(380px, 85vw);
  }
}

/* ===== RESPONSIVE: Tablet (max 768px) ===== */
@media (max-width: 768px) {
  .navbar {
    padding: 0 24px;
  }

  .nav-left {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    flex-direction: column-reverse;
    padding: 40px 24px 40px;
    min-height: auto;
    gap: 32px;
    text-align: left;
  }

  .hero-content {
    max-width: 100%;
    width: 100%;
  }

  .hero-image {
    width: 100%;
  }

  .circle-frame {
    width: min(320px, 80vw);
    height: min(320px, 80vw);
  }
}

/* ===== RESPONSIVE: Mobile (max 480px) ===== */
@media (max-width: 480px) {
  .navbar {
    padding: 0 16px;
    height: 60px;
  }

  .mobile-menu {
    top: 60px;
  }

  .logo-brush {
    font-size: 18px;
  }

  .hero {
    padding: 32px 16px 32px;
    gap: 24px;
  }

  .hero-tag {
    font-size: 11px;
    letter-spacing: 0.14em;
  }

  .hero-title {
    font-size: 34px;
    margin-bottom: 20px;
  }

  .hero-info p,
  .hero-hours p {
    font-size: 14px;
  }

  .btn-view {
    padding: 13px 28px;
    font-size: 11px;
    width: 100%;
    text-align: center;
  }

  .circle-frame {
    width: min(280px, 76vw);
    height: min(280px, 76vw);
  }
}

/* ===== RESPONSIVE: Very small (max 360px) ===== */
@media (max-width: 360px) {
  .hero-title {
    font-size: 28px;
  }

  .circle-frame {
    width: 240px;
    height: 240px;
  }
}

/* ===== FEATURES SECTION ===== */
.features {
  padding: 80px 80px 60px;
  background: var(--white);
  text-align: center;
}

.features-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 60px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  align-items: start;
}

.feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 8px 12px;
  transition: transform 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
}

.feature-icon {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70px;
}

.feature-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 14px;
  line-height: 1.3;
}

.feature-desc {
  font-family: var(--font-body);
  font-size: 14px;
  color: #444;
  line-height: 1.7;
}

/* Features Responsive */
@media (max-width: 1024px) {
  .features {
    padding: 60px 40px;
  }

  .features-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .features {
    padding: 50px 24px;
  }

  .features-title {
    font-size: clamp(24px, 5vw, 36px);
    margin-bottom: 40px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
}

@media (max-width: 480px) {
  .features {
    padding: 40px 16px;
  }

  .features-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .feature-name {
    font-size: 16px;
  }

  .feature-desc {
    font-size: 13px;
  }
}

@media (max-width: 360px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}
/* ===========================
   CSS VARIABLES & RESET
=========================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --cream: #fdf6ec;
  --warm-brown: #4a2c1a;
  --golden: #c8922a;
  --light-brown: #8b5a2b;
  --text-dark: #2c1a0e;
  --text-muted: #7a6352;
  --white: #ffffff;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Lato', Helvetica, sans-serif;
  --shadow-soft: 0 4px 20px rgba(74, 44, 26, 0.12);
  --shadow-medium: 0 8px 32px rgba(74, 44, 26, 0.18);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-full: 9999px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--cream);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: var(--golden);
  text-decoration: underline;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--warm-brown);
}

/* ===========================
   HERO / BREAD SECTION
=========================== */
.hero-section {
  background-color: var(--white);
  padding: 60px 24px 30px;
  text-align: center;
  border-bottom: 1px solid rgba(74, 44, 26, 0.08);
}

.hero-text {
  margin-bottom: 36px;
  animation: fadeInDown 0.7s ease both;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin-bottom: 8px;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 2vw, 1rem);
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* ===========================
   GALLERY GRID
=========================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  max-width: 900px;
  margin: 0 auto 18px;
  animation: fadeInUp 0.8s ease 0.15s both;
}

.gallery-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  box-shadow: var(--shadow-soft);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  cursor: pointer;
}

.gallery-item:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--shadow-medium);
}

.gallery-item img {
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.image-credit {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 4px;
  animation: fadeIn 1s ease 0.3s both;
}

/* ===========================
   ABOUT SECTION
=========================== */
.about-section {
  padding: 72px 24px 80px;
  background-color: var(--white);
}

.about-container {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 48px;
  animation: fadeInUp 0.8s ease 0.1s both;
}

.about-text {
  flex: 1;
}

.about-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  position: relative;
}

.about-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--golden);
  border-radius: 2px;
  margin-top: 10px;
}

.about-desc {
  font-size: clamp(0.85rem, 1.8vw, 0.95rem);
  color: var(--text-muted);
  line-height: 1.75;
  font-weight: 400;
}

.about-image {
  flex-shrink: 0;
  width: clamp(140px, 22vw, 200px);
  height: clamp(140px, 22vw, 200px);
  border-radius: var(--radius-full);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  border: 5px solid var(--white);
  outline: 2px solid rgba(200, 146, 42, 0.25);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-image:hover {
  transform: scale(1.04);
  box-shadow: 0 12px 40px rgba(74, 44, 26, 0.22);
}

/* ===========================
   ANIMATIONS
=========================== */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ===========================
   RESPONSIVE – TABLET (≤768px)
=========================== */
@media (max-width: 768px) {
  .hero-section {
    padding: 48px 20px 24px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    max-width: 480px;
  }

  .about-section {
    padding: 52px 20px 60px;
  }

  .about-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    text-align: left;
  }

  .about-image {
    align-self: center;
    width: 160px;
    height: 160px;
  }
}

/* ===========================
   RESPONSIVE – MOBILE (≤480px)
=========================== */
@media (max-width: 480px) {
  .hero-section {
    padding: 36px 16px 20px;
  }

  .hero-title {
    font-size: 1.9rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
    max-width: 100%;
  }

  .gallery-item {
    aspect-ratio: 1 / 1;
    border-radius: 6px;
  }

  .about-section {
    padding: 40px 16px 48px;
  }

  .about-container {
    gap: 24px;
  }

  .about-title {
    font-size: 1.4rem;
  }

  .about-desc {
    font-size: 0.88rem;
  }

  .about-image {
    width: 130px;
    height: 130px;
    align-self: center;
  }
}

/* ===========================
   RESPONSIVE – LARGE (≥1200px)
=========================== */
@media (min-width: 1200px) {
  .hero-section {
    padding: 80px 40px 40px;
  }

  .gallery-grid {
    gap: 14px;
    max-width: 1100px;
  }

  .about-section {
    padding: 100px 40px 110px;
  }

  .about-container {
    max-width: 1000px;
    gap: 64px;
  }

  .about-image {
    width: 220px;
    height: 220px;
  }
}

/* ===========================
   RESET & VARIABLES
=========================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --tan:         #a89880;
  --tan-dark:    #8c7d6b;
  --cream:       #fdf6ec;
  --dark-bg:     #1a1208;
  --card-white:  #ffffff;
  --golden:      #c8922a;
  --text-dark:   #1e1208;
  --text-muted:  #6b5a48;
  --text-light:  #d4c5b0;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Lato', Helvetica, sans-serif;
  --shadow-card:  0 8px 40px rgba(30,18,8,0.18);
  --shadow-img:   0 12px 36px rgba(30,18,8,0.25);
  --radius-card:  18px;
  --radius-img:   14px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: var(--golden);
  text-decoration: underline;
  transition: color 0.2s;
}
a:hover { color: var(--tan-dark); }

/* ===========================
   SECTION A – GOAL
=========================== */
.goal-section {
  position: relative;
  min-height: 520px;
  background-color: var(--tan);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 60px 24px 100px;
}

/* Full-bleed background image (left side) */
.goal-bg-image {
  position: absolute;
  inset: 0;
  width: 52%;
  height: 100%;
  z-index: 0;
}

.goal-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* White card overlay (right side) */
.goal-card {
  position: relative;
  z-index: 2;
  margin-left: auto;
  width: clamp(280px, 50%, 440px);
  background: var(--card-white);
  border-radius: var(--radius-card);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--shadow-card);
  animation: slideInRight 0.7s ease both;
}

.goal-title {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.35;
  margin-bottom: 16px;
}

.goal-desc {
  font-size: clamp(0.82rem, 1.5vw, 0.92rem);
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 10px;
}

.goal-credit {
  font-size: 0.72rem;
  color: #aaa;
  font-style: italic;
  margin-bottom: 20px;
}

/* Overlapping small image (bottom-center overlap) */
.goal-overlay-image {
  position: absolute;
  z-index: 3;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(160px, 22vw, 230px);
  height: clamp(130px, 18vw, 190px);
  border-radius: var(--radius-img);
  overflow: hidden;
  box-shadow: var(--shadow-img);
  border: 5px solid var(--card-white);
  animation: floatUp 0.8s ease 0.3s both;
}

/* ===========================
   SECTION B – FRESH BAKED
=========================== */
.fresh-section {
  position: relative;
  background-color: var(--white);
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 80px 48px 72px 0;
  overflow: hidden;
  min-height: 480px;
}

/* Large circle image bleeding out left */
.fresh-circle-image {
  flex-shrink: 0;
  width: clamp(220px, 38vw, 380px);
  height: clamp(220px, 38vw, 380px);
  border-radius: 50%;
  overflow: hidden;
  margin-left: clamp(-80px, -8vw, -60px);
  box-shadow: var(--shadow-img);
  border: 6px solid rgba(255,255,255,0.07);
  animation: fadeInLeft 0.8s ease both;
}

/* Text content */
.fresh-content {
  flex: 1;
  max-width: 460px;
  animation: slideInRight 0.8s ease 0.15s both;
}

.fresh-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--golden);
  margin-bottom: 12px;
}

.fresh-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 18px;
}

.fresh-desc {
  font-size: clamp(0.82rem, 1.5vw, 0.92rem);
  color: var(--black);
  line-height: 1.78;
  margin-bottom: 20px;
}

.fresh-list {
  list-style: none;
  margin-bottom: 28px;
}

.fresh-list li {
  font-size: clamp(0.82rem, 1.5vw, 0.9rem);
  color: var(--golden);
  margin-bottom: 8px;
  padding-left: 4px;
}

.fresh-credit {
  font-size: 0.72rem;
  color: #555;
  font-style: italic;
  margin-top: 16px;
}

.fresh-credit a { color: #777; }
.fresh-credit a:hover { color: var(--golden); }

/* ===========================
   BUTTON STYLES
=========================== */
.btn-outline {
  display: inline-block;
  padding: 11px 28px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1.5px solid var(--text-dark);
  color: var(--text-dark);
  border-radius: 4px;
  background: transparent;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.2s;
  cursor: pointer;
}

.btn-outline:hover {
  background: var(--text-dark);
  color: var(--card-white);
  transform: translateY(-2px);
}

.btn-outline.dark {
  border-color: var(--card-white);
  color: var(--card-white);
}

.btn-outline.dark:hover {
  background: var(--card-white);
  color: var(--text-dark);
}

/* ===========================
   ANIMATIONS
=========================== */
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes floatUp {
  from { opacity: 0; transform: translateX(-50%) translateY(20px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ===========================
   RESPONSIVE – TABLET (≤900px)
=========================== */
@media (max-width: 900px) {
  /* Section A */
  .goal-section {
    flex-direction: column;
    align-items: stretch;
    padding: 0 0 120px;
    min-height: unset;
  }

  .goal-bg-image {
    position: relative;
    width: 100%;
    height: 280px;
    order: 0;
  }

  .goal-card {
    width: calc(100% - 40px);
    margin: -40px auto 0;
    order: 1;
    animation: slideInRight 0s; /* disable on tablet */
  }

  .goal-overlay-image {
    bottom: -20px;
    width: 180px;
    height: 150px;
  }

  /* Section B */
  .fresh-section {
    flex-direction: column;
    padding: 60px 28px 60px;
    align-items: center;
    text-align: center;
  }

  .fresh-circle-image {
    margin-left: 0;
    width: 240px;
    height: 240px;
  }

  .fresh-content {
    max-width: 100%;
  }

  .fresh-list {
    text-align: left;
    display: inline-block;
  }
}

/* ===========================
   RESPONSIVE – MOBILE (≤600px)
=========================== */
@media (max-width: 600px) {
  /* Section A */
  .goal-bg-image {
    height: 220px;
  }

  .goal-card {
    width: calc(100% - 28px);
    padding: 24px 20px;
    border-radius: 12px;
  }

  .goal-overlay-image {
    width: 140px;
    height: 115px;
    bottom: -16px;
    border-width: 3px;
  }

  /* Section B */
  .fresh-section {
    padding: 50px 20px 52px;
  }

  .fresh-circle-image {
    width: 190px;
    height: 190px;
  }

  .fresh-title {
    font-size: 1.4rem;
  }

  .btn-outline {
    padding: 10px 22px;
    font-size: 0.74rem;
  }
}

/* ===========================
   RESPONSIVE – LARGE (≥1200px)
=========================== */
@media (min-width: 1200px) {
  .goal-section {
    padding: 80px 60px 130px;
    min-height: 600px;
  }

  .goal-card {
    width: 440px;
  }

  .goal-overlay-image {
    width: 260px;
    height: 210px;
    bottom: -40px;
  }

  .fresh-section {
    padding: 100px 80px 100px 0;
    min-height: 540px;
  }

  .fresh-circle-image {
    width: 420px;
    height: 420px;
    margin-left: 105px;
  }

  .fresh-content {
    max-width: 520px;
    margin-left: 287px;
  }
}

/* ===========================
   RESET & VARIABLES
=========================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --tan-bg:       #a89880;
  --card-white:   #ffffff;
  --text-dark:    #1e1208;
  --text-muted:   #6b5a48;
  --golden:       #c8922a;
  --link-color:   #5a7fa0;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Lato', Helvetica, sans-serif;
  --shadow-card:  0 4px 24px rgba(30,18,8,0.13);
  --shadow-hover: 0 10px 36px rgba(30,18,8,0.22);
  --radius-card:  16px;
  --radius-img:   50%;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--tan-bg);
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--link-color);
  text-decoration: underline;
  transition: color 0.2s;
}
a:hover { color: var(--golden); }

/* ===========================
   PRODUCTS SECTION
=========================== */
.products-section {
  padding: clamp(48px, 7vw, 80px) clamp(16px, 5vw, 60px);
  text-align: center;
}

.products-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: clamp(28px, 4vw, 48px);
  letter-spacing: -0.3px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.15);
  animation: fadeInDown 0.6s ease both;
}

/* ===========================
   GRID
=========================== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 2vw, 22px);
  max-width: 1000px;
  margin: 0 auto 28px;
}

/* ===========================
   PRODUCT CARD
=========================== */
.product-card {
  background: var(--card-white);
  border-radius: var(--radius-card);
  padding: clamp(20px, 3vw, 30px) clamp(14px, 2vw, 22px) clamp(20px, 3vw, 28px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeInUp 0.6s ease both;
}

/* Staggered animation delay per card */
.product-card:nth-child(1) { animation-delay: 0.05s; }
.product-card:nth-child(2) { animation-delay: 0.10s; }
.product-card:nth-child(3) { animation-delay: 0.15s; }
.product-card:nth-child(4) { animation-delay: 0.20s; }
.product-card:nth-child(5) { animation-delay: 0.25s; }
.product-card:nth-child(6) { animation-delay: 0.30s; }
.product-card:nth-child(7) { animation-delay: 0.35s; }
.product-card:nth-child(8) { animation-delay: 0.40s; }

.product-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-hover);
}

/* Circular Image */
.card-image {
  width: clamp(90px, 12vw, 130px);
  height: clamp(90px, 12vw, 130px);
  border-radius: var(--radius-img);
  overflow: hidden;
  margin-bottom: 16px;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(30,18,8,0.14);
  transition: transform 0.4s ease;
}

.product-card:hover .card-image {
  transform: scale(1.06);
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.product-card:hover .card-image img {
  transform: scale(1.1);
}

/* Card Name */
.card-name {
  font-family: var(--font-body);
  font-size: clamp(0.72rem, 1.2vw, 0.82rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.3;
}

/* Card Description */
.card-desc {
  font-size: clamp(0.78rem, 1.2vw, 0.86rem);
  color: var(--text-muted);
  line-height: 1.65;
  font-style: italic;
  flex: 1;
  margin-bottom: 14px;
}

.card-desc a {
  color: var(--link-color);
  font-style: italic;
}

/* More link */
.card-more {
  font-size: 0.82rem;
  font-family: var(--font-body);
  color: var(--text-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 400;
  transition: color 0.2s;
  margin-top: auto;
}

.card-more:hover {
  color: var(--golden);
}

/* ===========================
   IMAGE CREDIT
=========================== */
.products-credit {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.7);
  font-style: italic;
  margin-top: 8px;
}

.products-credit a {
  color: rgba(255,255,255,0.85);
  text-decoration: underline;
}

.products-credit a:hover {
  color: var(--card-white);
}

/* ===========================
   ANIMATIONS
=========================== */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-18px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===========================
   RESPONSIVE – TABLET (≤900px)
   2 columns
=========================== */
@media (max-width: 900px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    max-width: 560px;
  }

  .card-image {
    width: 110px;
    height: 110px;
  }
}

/* ===========================
   RESPONSIVE – MOBILE (≤520px)
   2 columns compact
=========================== */
@media (max-width: 520px) {
  .products-section {
    padding: 40px 14px 40px;
  }

  .products-title {
    font-size: 1.6rem;
    margin-bottom: 24px;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    max-width: 100%;
  }

  .product-card {
    padding: 18px 12px 18px;
    border-radius: 12px;
  }

  .card-image {
    width: 80px;
    height: 80px;
    margin-bottom: 12px;
  }

  .card-name {
    font-size: 0.7rem;
  }

  .card-desc {
    font-size: 0.75rem;
  }

  .card-more {
    font-size: 0.78rem;
  }
}

/* ===========================
   RESPONSIVE – SMALL MOBILE (≤360px)
   1 column
=========================== */
@media (max-width: 360px) {
  .products-grid {
    grid-template-columns: 1fr;
    max-width: 300px;
  }
}

/* ===========================
   RESPONSIVE – LARGE (≥1200px)
=========================== */
@media (min-width: 1200px) {
  .products-grid {
    max-width: 1200px;
    gap: 28px;
  }

  .card-image {
    width: 150px;
    height: 150px;
  }

  .card-name {
    font-size: 0.88rem;
  }

  .card-desc {
    font-size: 0.9rem;
  }
}

/* =========================================
   LA FARINE BAKERY — style.css
   Fully Responsive: Mobile / Tablet / Desktop
   ========================================= */

/* ---------- CSS Variables ---------- */
:root {
  --cream:     #f5f0e8;
  --warm-tan:  #b5a28a;
  --dark:      #2a2118;
  --accent:    #7a5c3e;
  --link:      #8a6a4a;
  --text:      #3d3028;
  --light-bg:  #faf7f2;
  --border:    #ddd5c5;
  --radius:    12px;
  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Lato', sans-serif;
  --shadow:    0 4px 24px rgba(90,60,20,0.10);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--light-bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
}

a { text-decoration: none; color: inherit; }

img { display: block; width: 100%; height: 100%; object-fit: cover; }

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================
   PRODUCTS SECTION
   ========================================== */
.products-section {
  background: var(--white);
  padding: 60px 0 70px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* ---------- Product Card ---------- */
.product-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(90,60,20,0.18);
}

.product-img-wrap {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.product-img-wrap img {
  transition: transform 0.5s ease;
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.06);
}

.product-card h3 {
  font-family: var(--font-head);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--dark);
  padding: 20px 22px 8px;
}

.product-card p {
  font-size: 0.93rem;
  color: #6b5b4e;
  padding: 0 22px 24px;
  line-height: 1.65;
}

/* ==========================================
   FOOTER SECTION
   ========================================== */
.footer-section {
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 56px 0 48px;
}

.footer-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* ---------- Newsletter ---------- */
.newsletter-box h2,
.hours-box h2 {
  font-family: var(--font-head);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 14px;
}

.newsletter-box p {
  font-size: 0.93rem;
  color: #6b5b4e;
  margin-bottom: 22px;
  max-width: 380px;
}

/* Email Form */
.email-form {
  display: flex;
  gap: 0;
  margin-bottom: 28px;
  max-width: 420px;
}

.email-form input {
  flex: 1;
  border: 1.5px solid var(--border);
  border-right: none;
  border-radius: var(--radius) 0 0 var(--radius);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--light-bg);
  outline: none;
  transition: border-color 0.2s;
}

.email-form input::placeholder { color: #b0a090; }

.email-form input:focus { border-color: var(--accent); }

.email-form button {
  background: var(--warm-tan);
  color: #fff;
  border: none;
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 12px 22px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background 0.25s;
  white-space: nowrap;
}

.email-form button:hover { background: var(--accent); }

/* Social Icons */
.social-icons {
  display: flex;
  gap: 18px;
}

.social-icons a {
  font-size: 1.25rem;
  color: var(--dark);
  transition: color 0.2s, transform 0.2s;
}

.social-icons a:hover {
  color: var(--accent);
  transform: translateY(-3px);
}

/* ---------- Hours & Location ---------- */
.hours-box .address a {
  color: var(--link);
  text-decoration: underline;
  font-size: 0.95rem;
  line-height: 1.7;
  display: inline-block;
  margin-bottom: 6px;
}

.hours-box .phone a {
  color: var(--link);
  text-decoration: underline;
  font-size: 0.95rem;
  margin-bottom: 18px;
  display: inline-block;
}

.hours-box .hours {
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 22px;
  line-height: 1.7;
}

.hours-box .credit {
  font-size: 0.82rem;
  color: #aaa;
}

.hours-box .credit a {
  font-style: italic;
  text-decoration: underline;
  color: #aaa;
}

/* ==========================================
   RESPONSIVE — TABLET  (max 900px)
   ========================================== */
@media (max-width: 900px) {

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .newsletter-box p { max-width: 100%; }
}

/* ==========================================
   RESPONSIVE — MOBILE  (max 600px)
   ========================================== */
@media (max-width: 600px) {

  .products-section { padding: 40px 0 48px; }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .product-img-wrap { height: 200px; }

  .product-card h3 { font-size: 1.3rem; }

  .footer-section { padding: 40px 0 36px; }

  .newsletter-box h2,
  .hours-box h2 {
    font-size: 1.3rem;
  }

  .email-form {
    flex-direction: column;
    gap: 10px;
  }

  .email-form input {
    border-right: 1.5px solid var(--border);
    border-radius: var(--radius);
  }

  .email-form button {
    border-radius: var(--radius);
    text-align: center;
    padding: 12px 16px;
  }

  .social-icons { gap: 16px; }
  .social-icons a { font-size: 1.15rem; }
}

/* ==========================================
   RESPONSIVE — SMALL MOBILE  (max 380px)
   ========================================== */
@media (max-width: 380px) {

  body { font-size: 15px; }

  .container { padding: 0 16px; }

  .product-img-wrap { height: 170px; }

  .product-card h3 { font-size: 1.15rem; padding: 16px 16px 6px; }
  .product-card p  { padding: 0 16px 18px; }

  .newsletter-box h2,
  .hours-box h2 { font-size: 1.15rem; }

  .email-form input,
  .email-form button { font-size: 0.85rem; }
}
/* =========================================
   BAKERY FOOTER — footer.css
   Fully Responsive: Mobile / Tablet / Desktop
   ========================================= */

:root {
  --black:      #111111;
  --dark-gray:  #1a1a1a;
  --white:      #ffffff;
  --muted:      #aaaaaa;
  --border:     #333333;
  --tan:        #b5a28a;
  --btn-bg:     #9e8e7a;
  --btn-hover:  #7a6a58;
  --font-head:  'Playfair Display', Georgia, serif;
  --font-body:  'Lato', sans-serif;
  --radius:     6px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: var(--font-body);
  background: var(--black);
}

a { text-decoration: none; color: inherit; }

/* ===== CONTAINER ===== */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
}

/* =========================================
   FOOTER WRAPPER
   ========================================= */
.main-footer {
  background: var(--black);
  color: var(--white);
  padding-bottom: 0;
}

/* =========================================
   LOGO AREA
   ========================================= */
.footer-logo-area {
  text-align: center;
  padding: 52px 24px 48px;
}

.logo-tagline {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

/* Brush stroke behind BAKERY */
.logo-brush {
  display: inline-block;
  position: relative;
  padding: 6px 40px;
  background: var(--tan);
  clip-path: polygon(2% 0%, 100% 0%, 98% 100%, 0% 100%);
  margin-bottom: 14px;
}

/* Rough brush feel via pseudo-elements */
.logo-brush::before,
.logo-brush::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 18px;
  background: var(--tan);
  filter: blur(4px);
  opacity: 0.6;
}
.logo-brush::before { left: -10px; }
.logo-brush::after  { right: -10px; }

.logo-text {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--white);
  position: relative;
  z-index: 1;
}

.logo-divider {
  width: 30px;
  height: 2px;
  background: var(--white);
  margin: 0 auto 12px;
}

.logo-since {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  color: var(--muted);
  text-transform: uppercase;
}

/* =========================================
   FOUR COLUMNS
   ========================================= */
.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding-top: 10px;
  padding-bottom: 50px;
  border-top: 1px solid var(--border);
}

/* Column Headings */
.footer-col h4 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

/* Quick Links & Help Lists */
.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 14px;
}

.footer-col ul li a {
  color: var(--white);
  font-size: 0.97rem;
  font-weight: 300;
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--tan); }

/* Contact List */
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 300;
}

.contact-list li i {
  color: var(--white);
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.contact-list li a {
  color: var(--white);
  transition: color 0.2s;
}
.contact-list li a:hover { color: var(--tan); }

/* Subscribe Form */
.subscribe-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.subscribe-form input {
  background: var(--white);
  border: none;
  border-radius: var(--radius);
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: #444;
  outline: none;
  width: 100%;
}

.subscribe-form input::placeholder { color: #999; }

.subscribe-form button {
  background: var(--btn-bg);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  padding: 15px 16px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: background 0.25s;
  width: 100%;
}

.subscribe-form button:hover { background: var(--btn-hover); }

/* =========================================
   BOTTOM BAR
   ========================================= */
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.credit {
  font-size: 0.88rem;
  color: var(--muted);
}

.credit a {
  text-decoration: underline;
  color: var(--muted);
  transition: color 0.2s;
}
.credit a:hover { color: var(--white); }

.social-icons {
  display: flex;
  gap: 28px;
}

.social-icons a {
  color: var(--white);
  font-size: 1.35rem;
  transition: color 0.2s, transform 0.2s;
}

.social-icons a:hover {
  color: var(--tan);
  transform: translateY(-3px);
}

/* =========================================
   RESPONSIVE — TABLET  (max 900px)
   ========================================= */
@media (max-width: 900px) {

  .footer-columns {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

/* =========================================
   RESPONSIVE — MOBILE  (max 600px)
   ========================================= */
@media (max-width: 600px) {

  .logo-text { font-size: 2rem; }
  .logo-brush { padding: 6px 28px; }

  .footer-columns {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 0 24px 40px;
  }

  .footer-bottom { padding: 24px 20px; }
}

/* =========================================
   RESPONSIVE — SMALL MOBILE  (max 380px)
   ========================================= */
@media (max-width: 380px) {

  .logo-text { font-size: 1.6rem; }

  .footer-logo-area { padding: 36px 16px 36px; }

  .container { padding: 0 16px; }

  .footer-col h4 { font-size: 1rem; }

  .subscribe-form input,
  .subscribe-form button { font-size: 0.85rem; padding: 12px 14px; }
}