/* Canvas: Bakery */

/* ── Custom Properties ─────────────────────────────────── */
:root {
  --cnvs-themecolor: #C08552;
  --cnvs-themecolor-rgb: 192, 133, 82;

  --nl-bg:        #F7F4EF;
  --nl-surface:   #EAE3D8;
  --nl-dark:      #3A322C;
  --nl-text:      #2B2622;
  --nl-muted:     #7A6E65;
  --nl-accent:    #C08552;
  --nl-accent-light: rgba(192, 133, 82, 0.12);
  --nl-border:    rgba(43, 38, 34, 0.10);

  --nl-font-display: 'Fraunces', Georgia, serif;
  --nl-font-body:    'Inter', system-ui, sans-serif;

  --nl-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --nl-ease-in: cubic-bezier(0.36, 0, 0.78, 0);

  --nl-radius-sm: 8px;
  --nl-radius:    14px;
  --nl-radius-lg: 22px;
}

/* ── Document Base ──────────────────────────────────────── */
body {
  background-color: var(--nl-bg);
  color: var(--nl-text);
  font-family: var(--nl-font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* Paper grain overlay on body */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--nl-font-display);
  color: var(--nl-text);
  text-wrap: balance;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

p {
  font-family: var(--nl-font-body);
  color: var(--nl-muted);
  line-height: 1.75;
}

a {
  color: var(--nl-text);
  text-decoration: none;
  transition: color 0.3s var(--nl-ease);
}
a:hover { color: var(--nl-accent); }

/* ── Smooth Scroll ──────────────────────────────────────── */
html { scroll-behavior: smooth; }

/* ── Header ─────────────────────────────────────────────── */
#header {
  --cnvs-header-bg: transparent;
}

#header.scrolled-header {
  --cnvs-header-bg: var(--nl-bg);
}

#header-wrap {
  transition: background-color 0.5s var(--nl-ease),
              box-shadow 0.5s var(--nl-ease);
}

/* Transparent → bone transition via JS class */
body.header-solid #header-wrap {
  background-color: var(--nl-bg) !important;
  box-shadow: 0 1px 0 var(--nl-border);
}

/* Nav links */
#header .menu-link {
  font-family: var(--nl-font-body);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  transition: color 0.3s var(--nl-ease);
}
#header .menu-link:hover { color: var(--nl-accent); }

body.header-solid #header .menu-link {
  color: var(--nl-text);
}
body.header-solid #header .menu-link:hover { color: var(--nl-accent); }

/* CTA in nav */
.nl-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--nl-font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 9px 20px;
  border-radius: 100px;
  background: var(--cnvs-themecolor);
  color: #fff !important;
  transition: background 0.3s var(--nl-ease),
              transform 0.3s var(--nl-ease),
              box-shadow 0.3s var(--nl-ease);
  cursor: pointer;
}
.nl-nav-cta:hover {
  background: var(--nl-dark);
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(192,133,82,0.28);
}

/* ── Scroll Reveal Base ─────────────────────────────────── */
.nl-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--nl-ease), transform 0.7s var(--nl-ease);
}
.nl-reveal.visible {
  opacity: 1;
  transform: none;
}

.nl-reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.75s var(--nl-ease), transform 0.75s var(--nl-ease);
}
.nl-reveal-left.visible { opacity: 1; transform: none; }

.nl-reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.75s var(--nl-ease), transform 0.75s var(--nl-ease);
}
.nl-reveal-right.visible { opacity: 1; transform: none; }

.nl-reveal-scale {
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.7s var(--nl-ease), transform 0.7s var(--nl-ease);
}
.nl-reveal-scale.visible { opacity: 1; transform: none; }

/* Stagger delays */
.nl-d1 { transition-delay: 0.08s; }
.nl-d2 { transition-delay: 0.16s; }
.nl-d3 { transition-delay: 0.24s; }
.nl-d4 { transition-delay: 0.32s; }
.nl-d5 { transition-delay: 0.40s; }

/* Image clip reveal */
.nl-img-reveal {
  overflow: hidden;
  border-radius: var(--nl-radius);
}
.nl-img-reveal img {
  transform: scale(1.08);
  transition: transform 0.9s var(--nl-ease), clip-path 0.9s var(--nl-ease);
  clip-path: inset(0 100% 0 0);
}
.nl-img-reveal.visible img {
  transform: scale(1);
  clip-path: inset(0 0% 0 0);
}

/* ── Hero ───────────────────────────────────────────────── */
#nl-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
  background-color: var(--nl-dark);
  overflow: hidden;
}

.nl-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.nl-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
  transition: transform 0.1s linear;
  will-change: transform;
}

.nl-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(20, 15, 12, 0.82) 0%,
    rgba(20, 15, 12, 0.18) 55%,
    rgba(20, 15, 12, 0.10) 100%
  );
  z-index: 1;
}

.nl-hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 4rem 0;
}

.device-up-lg .nl-hero-content {
  padding-top: 10rem;
}

.nl-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--nl-font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s var(--nl-ease), transform 0.6s var(--nl-ease);
}
.nl-hero-eyebrow.visible { opacity: 1; transform: none; }

.nl-hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--nl-accent);
}

.nl-hero-headline {
  font-family: var(--nl-font-display);
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 300;
  font-style: italic;
  color: #F7F4EF;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-bottom: 28px;
}

/* Word-by-word reveal */
.nl-word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  padding-right: 0.04em;
}
.nl-word span {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  transition: transform 0.7s var(--nl-ease), opacity 0.5s var(--nl-ease);
}
.nl-word span.visible {
  transform: none;
  opacity: 1;
}

.nl-hero-sub {
  font-family: var(--nl-font-body);
  font-size: 17px;
  color: rgba(247, 244, 239, 0.68);
  font-weight: 300;
  letter-spacing: 0.01em;
  margin-bottom: 44px;
  max-width: 480px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s var(--nl-ease) 0.55s, transform 0.6s var(--nl-ease) 0.55s;
}
.nl-hero-sub.visible { opacity: 1; transform: none; }

.nl-hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s var(--nl-ease) 0.72s, transform 0.6s var(--nl-ease) 0.72s;
}
.nl-hero-actions.visible { opacity: 1; transform: none; }

/* Scroll cue */
.nl-scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-family: var(--nl-font-body);
  opacity: 0;
  animation: nl-cue-in 0.8s var(--nl-ease) 1.4s forwards;
}

@keyframes nl-cue-in {
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
  from { opacity: 0; transform: translateX(-50%) translateY(8px); }
}

.nl-scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: nl-line-pulse 1.8s ease-in-out infinite 1.8s;
}

@keyframes nl-line-pulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(0.6); transform-origin: top; }
}

/* ── Buttons ────────────────────────────────────────────── */
.nl-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--nl-font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 30px;
  border-radius: 100px;
  background: var(--cnvs-themecolor);
  color: #fff;
  transition: background 0.35s var(--nl-ease),
              transform 0.35s var(--nl-ease),
              box-shadow 0.35s var(--nl-ease);
  cursor: pointer;
  text-decoration: none;
  border: none;
}
.nl-btn-primary:hover {
  background: #9B6A3A;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(192,133,82,0.32);
}

.nl-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--nl-font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 13px 26px;
  border-radius: 100px;
  background: transparent;
  color: rgba(247,244,239,0.82);
  border: 1px solid rgba(247,244,239,0.32);
  transition: border-color 0.3s var(--nl-ease),
              color 0.3s var(--nl-ease),
              background 0.3s var(--nl-ease),
              transform 0.3s var(--nl-ease);
  cursor: pointer;
  text-decoration: none;
}
.nl-btn-ghost:hover {
  border-color: rgba(247,244,239,0.72);
  color: #fff;
  background: rgba(255,255,255,0.06);
  transform: translateY(-1px);
}

.nl-btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--nl-font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 30px;
  border-radius: 100px;
  background: var(--nl-text);
  color: var(--nl-bg);
  transition: background 0.3s var(--nl-ease), transform 0.3s var(--nl-ease), box-shadow 0.3s var(--nl-ease);
  cursor: pointer;
  text-decoration: none;
}
.nl-btn-dark:hover {
  background: var(--nl-dark);
  color: var(--nl-bg);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(43,38,34,0.22);
}

.nl-link-underline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--nl-font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--nl-text);
  position: relative;
  transition: color 0.3s var(--nl-ease);
  cursor: pointer;
  text-decoration: none;
}
.nl-link-underline::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--cnvs-themecolor);
  transition: width 0.4s var(--nl-ease);
}
.nl-link-underline:hover { color: var(--nl-accent); }
.nl-link-underline:hover::after { width: 100%; }

/* ── Marquee / Ribbon ───────────────────────────────────── */
.nl-marquee-wrap {
  background: var(--nl-surface);
  padding: 18px 0;
  overflow: hidden;
  border-top: 1px solid var(--nl-border);
  border-bottom: 1px solid var(--nl-border);
}

.nl-marquee-track {
  display: flex;
  gap: 0;
  animation: nl-marquee 22s linear infinite;
  white-space: nowrap;
}

.nl-marquee-text {
  font-family: var(--nl-font-display);
  font-size: 14px;
  font-style: italic;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--nl-muted);
  padding-right: 60px;
  flex-shrink: 0;
}

.nl-marquee-dot {
  color: var(--nl-accent);
  margin-right: 60px;
}

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

/* ── Philosophy Section ─────────────────────────────────── */
.nl-philosophy {
  padding: 100px 0;
}

.nl-philosophy-eyebrow {
  font-family: var(--nl-font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--nl-accent);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.nl-philosophy-eyebrow::after {
  content: '';
  display: inline-block;
  flex: 1;
  max-width: 40px;
  height: 1px;
  background: var(--nl-accent);
}

.nl-philosophy-headline {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.2;
  margin-bottom: 0;
}

.nl-philosophy-body {
  font-size: 17px;
  line-height: 1.8;
  color: var(--nl-muted);
  margin-bottom: 32px;
}

.nl-divider {
  width: 1px;
  background: var(--nl-border);
  height: 100%;
  min-height: 120px;
}

/* ── Stats Row ──────────────────────────────────────────── */
.nl-stats-row {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 40px;
  border-top: 1px solid var(--nl-border);
}

.nl-stat-item {
  flex: 1;
  min-width: 100px;
}

.nl-stat-number {
  font-family: var(--nl-font-display);
  font-size: 48px;
  font-weight: 300;
  line-height: 1;
  color: var(--nl-text);
  display: block;
  margin-bottom: 6px;
}

.nl-stat-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--nl-muted);
}

/* ── Menu Section ───────────────────────────────────────── */
.nl-menu-section {
  background: var(--nl-surface);
  padding: 100px 0;
}

.nl-section-header {
  margin-bottom: 64px;
}

.nl-section-tag {
  font-family: var(--nl-font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--nl-accent);
  margin-bottom: 16px;
}

.nl-section-title {
  font-family: var(--nl-font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.15;
  color: var(--nl-text);
}

.nl-section-subtitle {
  font-size: 16px;
  color: var(--nl-muted);
  max-width: 480px;
  margin-top: 14px;
}

/* Menu Cards */
.nl-menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.nl-menu-card {
  background: var(--nl-bg);
  border-radius: var(--nl-radius);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s var(--nl-ease), box-shadow 0.4s var(--nl-ease);
}
.nl-menu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(43,38,34,0.12);
}

.nl-menu-img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.nl-menu-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--nl-ease);
}
.nl-menu-card:hover .nl-menu-img img {
  transform: scale(1.06);
}

.nl-menu-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(58,50,44,0.72);
  backdrop-filter: blur(8px);
  color: rgba(247,244,239,0.88);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  font-family: var(--nl-font-body);
}

.nl-menu-body {
  padding: 22px 24px 24px;
}

.nl-menu-name {
  font-family: var(--nl-font-display);
  font-size: 22px;
  font-weight: 400;
  font-style: italic;
  color: var(--nl-text);
  margin-bottom: 6px;
  position: relative;
  display: inline-block;
}
.nl-menu-name::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--nl-accent);
  transition: width 0.4s var(--nl-ease);
}
.nl-menu-card:hover .nl-menu-name::after { width: 100%; }

.nl-menu-desc {
  font-size: 14px;
  color: var(--nl-muted);
  line-height: 1.6;
  margin-bottom: 14px;
}

.nl-menu-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--nl-border);
  padding-top: 14px;
}

.nl-menu-price {
  font-family: var(--nl-font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--nl-text);
}

.nl-menu-type {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--nl-accent);
  font-family: var(--nl-font-body);
}

/* ── Story / Bakers Section ─────────────────────────────── */
.nl-story-section {
  padding: 100px 0;
  overflow: hidden;
}

.nl-story-img-wrap {
  position: relative;
  border-radius: var(--nl-radius-lg);
  overflow: hidden;
}

.nl-story-img-wrap img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  transition: transform 0.8s var(--nl-ease);
}
.nl-story-img-wrap:hover img { transform: scale(1.03); }

.nl-story-badge {
  position: absolute;
  bottom: 28px;
  right: -20px;
  background: var(--nl-bg);
  border-radius: var(--nl-radius);
  padding: 20px 24px;
  box-shadow: 0 12px 40px rgba(43,38,34,0.14);
  text-align: center;
  min-width: 130px;
}
.nl-story-badge-num {
  font-family: var(--nl-font-display);
  font-size: 38px;
  font-weight: 300;
  color: var(--nl-accent);
  line-height: 1;
  display: block;
}
.nl-story-badge-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--nl-muted);
  margin-top: 4px;
}

.nl-story-content {
  padding-left: 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.nl-blockquote {
  font-family: var(--nl-font-display);
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 300;
  font-style: italic;
  color: var(--nl-text);
  line-height: 1.4;
  border-left: 2px solid var(--nl-accent);
  padding-left: 28px;
  margin: 32px 0;
}

/* ── Gallery Section ────────────────────────────────────── */
.nl-gallery-section {
  background: var(--nl-dark);
  padding: 100px 0;
}

.nl-gallery-section .nl-section-tag { color: rgba(192,133,82,0.9); }
.nl-gallery-section .nl-section-title { color: var(--nl-bg); }

/* Masonry gallery — CSS columns layout */
.nl-masonry-gallery {
  columns: 3;
  column-gap: 14px;
}

.nl-gal-item {
  break-inside: avoid;
  overflow: hidden;
  border-radius: var(--nl-radius);
  cursor: zoom-in;
  margin-bottom: 14px;
  display: block;
}

.nl-gal-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.6s var(--nl-ease), filter 0.4s ease;
}
.nl-gal-item:hover img {
  transform: scale(1.06);
  filter: brightness(1.06);
}

/* ── Hours & Location ───────────────────────────────────── */
.nl-location-section {
  padding: 100px 0;
}

.nl-hours-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
}
.nl-hours-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--nl-border);
  font-family: var(--nl-font-body);
  font-size: 15px;
}
.nl-hours-list li:last-child { border-bottom: none; }
.nl-hours-day { color: var(--nl-text); font-weight: 500; }
.nl-hours-time { color: var(--nl-muted); }
.nl-hours-closed { color: var(--nl-accent); opacity: 0.7; }

.nl-map-card {
  background: var(--nl-surface);
  border-radius: var(--nl-radius-lg);
  overflow: hidden;
  height: 100%;
  min-height: 400px;
  position: relative;
}

.nl-map-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.nl-address-overlay {
  position: absolute;
  bottom: 28px;
  left: 28px;
  right: 28px;
  background: var(--nl-bg);
  border-radius: var(--nl-radius);
  padding: 22px 24px;
  box-shadow: 0 8px 32px rgba(43,38,34,0.12);
}

.nl-address-name {
  font-family: var(--nl-font-display);
  font-size: 18px;
  font-weight: 400;
  font-style: italic;
  color: var(--nl-text);
  margin-bottom: 6px;
}

.nl-address-line {
  font-size: 14px;
  color: var(--nl-muted);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}
.nl-address-line i { color: var(--nl-accent); font-size: 14px; }

/* ── Newsletter / Footer ────────────────────────────────── */
.nl-newsletter-band {
  background: var(--nl-surface);
  padding: 80px 0;
  border-top: 1px solid var(--nl-border);
}

.nl-newsletter-headline {
  font-family: var(--nl-font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 300;
  font-style: italic;
  color: var(--nl-text);
  margin-bottom: 10px;
}

.nl-newsletter-sub {
  font-size: 16px;
  color: var(--nl-muted);
  margin-bottom: 36px;
}

.nl-newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  flex-wrap: wrap;
}

.nl-newsletter-input {
  flex: 1;
  min-width: 200px;
  padding: 14px 20px;
  border: 1px solid var(--nl-border);
  border-radius: 100px;
  background: var(--nl-bg);
  font-family: var(--nl-font-body);
  font-size: 15px;
  color: var(--nl-text);
  outline: none;
  transition: border-color 0.3s var(--nl-ease);
}
.nl-newsletter-input::placeholder { color: var(--nl-muted); opacity: 0.7; }
.nl-newsletter-input:focus { border-color: var(--nl-accent); }

/* ── Footer ─────────────────────────────────────────────── */
#footer {
  --cnvs-footer-bg: #2A1E17;
  --cnvs-footer-top-border: 1px solid rgba(255,255,255,0.06);
  --cnvs-copyrights-link-color: rgba(247,244,239,0.5);
}

.nl-footer-brand p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(247,244,239,0.55);
  margin-top: 16px;
}

.nl-footer-heading {
  font-family: var(--nl-font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(247,244,239,0.4);
  margin-bottom: 20px;
}

.nl-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.nl-footer-links li { margin-bottom: 10px; }
.nl-footer-links a {
  font-size: 15px;
  color: rgba(247,244,239,0.65);
  transition: color 0.3s var(--nl-ease);
  font-family: var(--nl-font-body);
}
.nl-footer-links a:hover { color: var(--nl-accent); }

.nl-footer-socials {
  display: flex;
  gap: 14px;
  margin-top: 24px;
}
.nl-footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 15px;
  transition: border-color 0.3s var(--nl-ease), color 0.3s var(--nl-ease), background 0.3s var(--nl-ease);
  cursor: pointer;
}
.nl-footer-socials a:hover {
  border-color: var(--nl-accent);
  color: var(--nl-accent);
  background: rgba(192,133,82,0.1);
}

.nl-footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}
.nl-footer-contact-item i {
  color: var(--nl-accent);
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}
.nl-footer-contact-item span {
  font-size: 15px;
  color: rgba(247,244,239,0.6);
  font-family: var(--nl-font-body);
}

#copyrights {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
}
#copyrights,
#copyrights a {
  color: rgba(247,244,239,0.38);
  font-size: 13px;
  font-family: var(--nl-font-body);
}
#copyrights a:hover { color: var(--nl-accent); }

/* ── Magnetic Button ────────────────────────────────────── */
.nl-magnetic {
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

/* ── Custom Cursor ──────────────────────────────────────── */
.nl-cursor {
  pointer-events: none;
  position: fixed;
  z-index: 10000;
  width: 10px;
  height: 10px;
  background: var(--nl-accent);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.25s var(--nl-ease),
              height 0.25s var(--nl-ease),
              background 0.25s ease,
              opacity 0.2s ease;
  opacity: 0;
}

.nl-cursor-ring {
  pointer-events: none;
  position: fixed;
  z-index: 9999;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(192,133,82,0.5);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.4s var(--nl-ease),
              height 0.4s var(--nl-ease),
              border-color 0.3s ease,
              opacity 0.2s ease;
  opacity: 0;
}

.nl-cursor.active {
  width: 6px;
  height: 6px;
  background: #fff;
}

.nl-cursor-ring.active {
  width: 52px;
  height: 52px;
  border-color: rgba(192,133,82,0.7);
}

/* ── Hairline Dividers ──────────────────────────────────── */
.nl-hr {
  border: none;
  height: 1px;
  background: var(--nl-border);
  margin: 0;
}

/* ── Section Padding override (scoped) ─────────────────── */
.nl-philosophy    { padding: 100px 0; }
.nl-menu-section  { padding: 100px 0; }
.nl-story-section { padding: 100px 0; }
.nl-gallery-section { padding: 100px 0; }
.nl-location-section { padding: 100px 0; }

/* ── Responsive Tweaks ──────────────────────────────────── */
@media (max-width: 991px) {
  .nl-story-content { padding-left: 0; padding-top: 40px; }
  .nl-story-badge { right: 16px; }
  .nl-masonry-gallery { columns: 2; }
}

@media (max-width: 767px) {
  .nl-hero-headline { font-size: clamp(36px, 10vw, 60px); }
  .nl-menu-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .nl-masonry-gallery { columns: 2; }
  .nl-stats-row { gap: 24px; }
  .nl-newsletter-form { flex-direction: column; }
  .nl-newsletter-input { min-width: 100%; }
  .nl-cursor, .nl-cursor-ring { display: none; }
}

@media (max-width: 480px) {
  .nl-menu-grid { grid-template-columns: 1fr; }
  .nl-masonry-gallery { columns: 1; }
}

@media (max-width: 480px) {
  .nl-menu-grid { grid-template-columns: 1fr; }
}

/* ── Reduced Motion ─────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .nl-reveal, .nl-reveal-left, .nl-reveal-right, .nl-reveal-scale,
  .nl-hero-eyebrow, .nl-hero-sub, .nl-hero-actions,
  .nl-word span {
    opacity: 1 !important;
    transform: none !important;
  }
  .nl-img-reveal img {
    clip-path: none !important;
    transform: none !important;
  }
}

.content-wrap {
	padding-top: 0;
	padding-bottom: 0;
}

.section {
	margin-top: 0;
	margin-bottom: 0;
}
