/* Inpunto Caffè — site stylesheet
   Brand palette inspired by the Inpunto logo: warm coffee-orange + espresso-dark */

:root {
  --ip-bg: #ffffff;
  --ip-surface: #fbf5ec;
  --ip-surface-2: #f3e8d5;
  --ip-ink: #1c110b;
  --ip-ink-soft: #55453a;
  --ip-muted: #8a7566;
  --ip-accent: #e87722;
  --ip-accent-dark: #b85f14;
  --ip-accent-soft: #ffe0c2;
  --ip-gold: #c89a4a;
  --ip-border: #e8ddc9;
  --ip-border-dark: #3a2a20;
  --ip-shadow: 0 12px 36px rgba(28, 17, 11, 0.08);
  --ip-shadow-lg: 0 24px 60px rgba(28, 17, 11, 0.14);

  --ip-font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --ip-font-body: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  --ip-nav-h: 76px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  font-family: var(--ip-font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ip-ink);
  background: var(--ip-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a { color: var(--ip-accent-dark); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--ip-accent); }

h1, h2, h3, h4, h5 {
  font-family: var(--ip-font-display);
  font-weight: 600;
  color: var(--ip-ink);
  margin: 0 0 .5em;
  letter-spacing: .2px;
}

h1 { font-size: clamp(2rem, 4.5vw, 3.6rem); line-height: 1.1; }
h2 { font-size: clamp(1.65rem, 3.2vw, 2.6rem); line-height: 1.18; }
h3 { font-size: clamp(1.25rem, 2vw, 1.65rem); }

.kicker {
  display: inline-block;
  font-family: var(--ip-font-body);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ip-accent-dark);
  margin-bottom: 1rem;
}

.kicker::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--ip-accent);
  vertical-align: middle;
  margin-right: .8rem;
  margin-bottom: 3px;
}

.lead-text {
  font-size: 1.12rem;
  color: var(--ip-ink-soft);
  max-width: 58ch;
}

/* ───────── Navbar ───────── */

.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--ip-nav-h);
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: saturate(170%) blur(12px);
  -webkit-backdrop-filter: saturate(170%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.site-nav.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  border-bottom-color: var(--ip-border);
  box-shadow: 0 6px 20px rgba(28, 17, 11, 0.06);
}

.site-nav .container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.site-nav__brand {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-family: var(--ip-font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--ip-ink);
  flex-shrink: 0;
}

.site-nav__brand img { height: 40px; width: auto; }
.site-nav__brand:hover { color: var(--ip-accent-dark); }

.site-nav__links {
  list-style: none;
  display: flex;
  gap: .2rem;
  margin: 0 0 0 auto;
  padding: 0;
  flex-wrap: wrap;
}

.site-nav .nav-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .6rem .85rem;
  font-size: .95rem;
  font-weight: 500;
  color: var(--ip-ink-soft);
  border-radius: 8px;
  transition: background .18s ease, color .18s ease;
}

.site-nav .nav-link:hover { color: var(--ip-accent-dark); background: var(--ip-surface); }
.site-nav .nav-link.active { color: var(--ip-ink); background: var(--ip-surface-2); }

.lang-switch {
  display: flex;
  gap: .15rem;
  margin-left: .9rem;
  padding: .18rem;
  border: 1px solid var(--ip-border);
  border-radius: 999px;
  background: var(--ip-bg);
}

.lang-switch button {
  border: 0;
  background: transparent;
  font: inherit;
  font-size: .78rem;
  font-weight: 600;
  padding: .3rem .55rem;
  border-radius: 999px;
  color: var(--ip-ink-soft);
  cursor: pointer;
  transition: background .18s ease, color .18s ease;
}

.lang-switch button:hover { color: var(--ip-accent-dark); }
.lang-switch button.active { background: var(--ip-ink); color: #fff; }

.navbar-toggle {
  display: none;
  margin-left: auto;
  border: 1px solid var(--ip-border);
  background: transparent;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  cursor: pointer;
  color: var(--ip-ink);
}

/* ───────── Buttons ───────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .85rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .02em;
  text-align: center;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
  text-decoration: none;
  line-height: 1.2;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--ip-accent);
  color: #fff;
  border-color: var(--ip-accent);
  box-shadow: 0 10px 24px rgba(232, 119, 34, 0.28);
}
.btn-primary:hover { background: var(--ip-accent-dark); border-color: var(--ip-accent-dark); color: #fff; }

.btn-ghost {
  background: transparent;
  color: var(--ip-ink);
  border-color: var(--ip-border-dark);
}
.btn-ghost:hover { background: var(--ip-ink); color: #fff; }

.btn-inverse {
  background: #fff;
  color: var(--ip-ink);
  border-color: #fff;
}
.btn-inverse:hover { background: var(--ip-accent); color: #fff; border-color: var(--ip-accent); }

.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.7);
}
.btn-outline-light:hover { background: #fff; color: var(--ip-ink); }

/* ───────── Layout primitives ───────── */

.container-ip {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
}

.section {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}

.section--surface { background: var(--ip-surface); }
.section--ink { background: var(--ip-ink); color: #f3e8d5; }
.section--ink h1, .section--ink h2, .section--ink h3 { color: #fff; }

.page-hero {
  padding: calc(var(--ip-nav-h) + 3.5rem) 0 3.5rem;
  background: linear-gradient(180deg, var(--ip-surface) 0%, #fff 100%);
  text-align: center;
}

.page-hero h1 { margin-bottom: .6rem; }
.page-hero .lead-text { margin: 0 auto; }

/* Image-background hero — full-width strip with dark overlay */
.page-hero--image {
  position: relative;
  padding: calc(var(--ip-nav-h) + 5.5rem) 0 5.5rem;
  background-color: var(--ip-ink);
  background-size: cover;
  background-position: center;
  color: #fff;
  overflow: hidden;
  text-align: center;
  min-height: clamp(380px, 48vh, 560px);
  display: flex;
  align-items: center;
}
.page-hero--image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(28,17,11,0.35) 0%, rgba(28,17,11,0.78) 100%);
  pointer-events: none;
  z-index: 0;
}
.page-hero--image > .container-ip {
  position: relative;
  z-index: 1;
  width: 100%;
}
.page-hero--image h1 { color: #fff; text-shadow: 0 4px 24px rgba(0,0,0,0.3); }
.page-hero--image .kicker { color: var(--ip-accent-soft); }
.page-hero--image .kicker::before { background: var(--ip-accent); }
.page-hero--image .lead-text { color: rgba(255,255,255,0.92); max-width: 64ch; }

/* Contain variant — transparent-background product shot pinned to the right */
.page-hero--contain {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right center;
  text-align: left;
}
.page-hero--contain::before {
  background: linear-gradient(90deg, rgba(28,17,11,0.95) 0%, rgba(28,17,11,0.75) 45%, rgba(28,17,11,0.15) 100%);
}
.page-hero--contain .container-ip { max-width: 1180px; }
.page-hero--contain .lead-text { margin-left: 0; }

@media (max-width: 720px) {
  .page-hero--contain {
    background-size: 85% auto;
    background-position: center bottom;
    text-align: center;
  }
  .page-hero--contain::before {
    background: linear-gradient(180deg, rgba(28,17,11,0.55) 0%, rgba(28,17,11,0.92) 100%);
  }
  .page-hero--contain .lead-text { margin: 1rem auto 0; }
}

/* ───────── Hero slider ───────── */

.hero-slider {
  position: relative;
}

.hero-slider .carousel-item {
  position: relative;
  height: clamp(420px, 72vh, 720px);
}

.hero-slider .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.78) saturate(1.05);
}

.hero-slider .carousel-item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(28,17,11,0.1) 0%, rgba(28,17,11,0.55) 100%);
  pointer-events: none;
}

.hero-slider .carousel-caption {
  position: absolute;
  left: 8%; right: 8%; bottom: clamp(5%, 14vh, 18%);
  z-index: 3;
  color: #fff;
  text-align: left;
  padding: 0;
}

.hero-slider .carousel-caption .eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--ip-accent-soft);
  margin-bottom: 1rem;
}

.hero-slider .carousel-caption .eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px; height: 2px;
  background: var(--ip-accent);
  vertical-align: middle;
  margin-right: .8rem;
  margin-bottom: 3px;
}

.hero-slider .carousel-caption h1 {
  color: #fff;
  font-size: clamp(2.2rem, 6vw, 4.4rem);
  max-width: 18ch;
  font-weight: 500;
  margin: 0 0 1.4rem;
  text-shadow: 0 4px 24px rgba(0,0,0,0.28);
}

.hero-slider .carousel-caption .cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
}

.hero-slider .carousel-indicators {
  margin: 0 0 1.4rem;
  gap: .4rem;
}

.hero-slider .carousel-indicators [data-bs-target] {
  width: 40px; height: 3px;
  background: rgba(255,255,255,0.4);
  border: 0;
  border-radius: 0;
  opacity: 1;
  transition: background .2s ease;
}
.hero-slider .carousel-indicators .active { background: var(--ip-accent); }

.hero-slider .carousel-control-prev,
.hero-slider .carousel-control-next {
  width: 8%;
  opacity: .7;
}
.hero-slider .carousel-control-prev:hover,
.hero-slider .carousel-control-next:hover { opacity: 1; }

.hero-slider .carousel-control-prev-icon,
.hero-slider .carousel-control-next-icon {
  width: 3rem; height: 3rem;
  background-color: rgba(0,0,0,0.25);
  border-radius: 50%;
  padding: .75rem;
  background-size: 60% 60%;
  background-position: center;
}

/* ───────── Home: Explore cards ───────── */

.explore-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.explore-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--ip-border);
  box-shadow: var(--ip-shadow);
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
  min-height: 340px;
  color: var(--ip-ink);
}

.explore-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ip-shadow-lg);
  color: var(--ip-ink);
}

.explore-card__media {
  height: 180px;
  background: var(--ip-surface-2);
  overflow: hidden;
}

.explore-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.explore-card:hover .explore-card__media img { transform: scale(1.05); }

.explore-card__body {
  padding: 1.5rem 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: .7rem;
}

.explore-card__body h3 { margin: 0; }
.explore-card__body p { color: var(--ip-ink-soft); margin: 0; flex: 1; }

.explore-card__more {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-weight: 600;
  font-size: .9rem;
  color: var(--ip-accent-dark);
  margin-top: .5rem;
}

.explore-card__more::after {
  content: '→';
  transition: transform .2s ease;
}
.explore-card:hover .explore-card__more::after { transform: translateX(4px); }

/* ───────── Home: pillars ───────── */

.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.pillar {
  text-align: left;
  padding: 0 1rem;
  border-left: 2px solid var(--ip-accent);
}

.pillar h3 { margin: 0 0 .6rem; }
.pillar p { color: var(--ip-ink-soft); margin: 0; }

/* ───────── Product cards ───────── */

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.product-card {
  background: #fff;
  border: 1px solid var(--ip-border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--ip-shadow);
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ip-shadow-lg);
}

.product-card__media {
  aspect-ratio: 4 / 3;
  background: var(--ip-surface);
  padding: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-card__media img {
  max-height: 100%;
  max-width: 90%;
  object-fit: contain;
}

.product-card__body {
  padding: 1.5rem 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  flex: 1;
}

.product-card__body h3 {
  margin: 0;
  font-size: 1.5rem;
  font-family: var(--ip-font-display);
}

.product-card__body p {
  margin: 0;
  color: var(--ip-ink-soft);
  font-size: .96rem;
  flex: 1;
}

.product-card__meta {
  display: inline-flex;
  align-items: center;
  padding: .35rem .75rem;
  background: var(--ip-surface);
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--ip-accent-dark);
  letter-spacing: .04em;
  align-self: flex-start;
}

.product-card__banner {
  background: var(--ip-surface);
  border-top: 1px solid var(--ip-border);
  padding: 1.15rem 1.5rem 1.3rem;
}

/* Taste profile widget — replaces the static _f.jpg bean strips */
.taste-profile {
  display: grid;
  gap: .55rem;
}

.taste-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .82rem;
}

.taste-row__label {
  color: var(--ip-ink-soft);
  font-weight: 500;
  letter-spacing: .02em;
}

.taste-beans {
  display: inline-flex;
  gap: .3rem;
}

.taste-beans span {
  width: 13px;
  height: 17px;
  border-radius: 50%;
  border: 1.5px solid var(--ip-ink);
  background: transparent;
  transform: rotate(18deg);
  position: relative;
}

.taste-beans span::after {
  content: '';
  position: absolute;
  top: 10%;
  bottom: 10%;
  left: calc(50% - 0.5px);
  width: 1px;
  background: var(--ip-ink);
  border-radius: 1px;
}

.taste-beans[data-level="1"] span:nth-child(-n+1),
.taste-beans[data-level="2"] span:nth-child(-n+2),
.taste-beans[data-level="3"] span:nth-child(-n+3),
.taste-beans[data-level="4"] span {
  background: var(--ip-ink);
}

.taste-beans[data-level="1"] span:nth-child(-n+1)::after,
.taste-beans[data-level="2"] span:nth-child(-n+2)::after,
.taste-beans[data-level="3"] span:nth-child(-n+3)::after,
.taste-beans[data-level="4"] span::after {
  background: var(--ip-accent-soft);
}

/* Horeca 5-product grid: balanced, centers last row */
.product-grid--horeca {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}

.product-grid--horeca .product-card {
  flex: 1 1 calc((100% - 4rem) / 3);
  max-width: calc((100% - 4rem) / 3);
  min-width: 280px;
}

@media (max-width: 960px) {
  .product-grid--horeca .product-card {
    flex-basis: calc((100% - 2rem) / 2);
    max-width: calc((100% - 2rem) / 2);
  }
}

@media (max-width: 600px) {
  .product-grid--horeca .product-card {
    flex-basis: 100%;
    max-width: 100%;
  }
}

/* ───────── About / Story layout ───────── */

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.story-grid--reverse .story-grid__media { order: 2; }

.story-grid__media {
  position: relative;
}

.story-grid__media img {
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--ip-shadow-lg);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.story-grid__media figcaption {
  position: absolute;
  left: 1.2rem;
  bottom: 1.2rem;
  background: var(--ip-ink);
  color: #fff;
  padding: .5rem 1rem;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .04em;
}

.story-grid__body p { color: var(--ip-ink-soft); }
.story-grid__body p + p { margin-top: 1rem; }

/* ───────── Trieste page ───────── */

.feature-hero {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--ip-shadow-lg);
}
.feature-hero img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  display: block;
}
.feature-hero--contain {
  background: linear-gradient(135deg, #2a1f19 0%, var(--ip-ink) 100%);
  padding: 2rem clamp(1rem, 4vw, 3rem);
}
.feature-hero--contain img {
  aspect-ratio: auto;
  max-height: 420px;
  width: auto;
  max-width: 100%;
  margin: 0 auto;
  object-fit: contain;
}
.feature-hero figcaption {
  position: absolute;
  left: 1.5rem; bottom: 1.5rem;
  background: rgba(28,17,11,0.78);
  color: #fff;
  padding: .55rem 1.1rem;
  border-radius: 999px;
  font-size: .85rem;
  letter-spacing: .05em;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.trieste-prose p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--ip-ink-soft);
  margin: 0 0 1.25rem;
}
.trieste-prose .prose-figure {
  margin: 2rem 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--ip-shadow-lg);
  background: var(--ip-surface);
}
.trieste-prose .prose-figure img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}
.trieste-prose .prose-figure figcaption {
  padding: .75rem 1.2rem;
  font-size: .85rem;
  color: var(--ip-muted);
  font-style: italic;
  letter-spacing: .02em;
}

.trieste-prose p:first-child::first-letter {
  font-family: var(--ip-font-display);
  font-size: 3.6rem;
  float: left;
  line-height: 1;
  margin: .05em .4rem 0 0;
  color: var(--ip-accent-dark);
  font-weight: 600;
}

/* ───────── Stats row ───────── */

.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  padding: 2.25rem 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.stat { text-align: center; }
.stat__value {
  font-family: var(--ip-font-display);
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 500;
  color: var(--ip-accent);
  line-height: 1;
}
.stat__label {
  margin-top: .5rem;
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: #d9c9b3;
}

/* ───────── CTA ribbon ───────── */

.cta-ribbon {
  background: linear-gradient(135deg, var(--ip-accent) 0%, var(--ip-accent-dark) 100%);
  color: #fff;
  padding: clamp(3rem, 7vw, 4.5rem) 0;
  text-align: center;
}
.cta-ribbon h2 { color: #fff; margin-bottom: 1.2rem; }
.cta-ribbon p { color: #fff; opacity: .95; max-width: 58ch; margin: 0 auto 1.8rem; }

/* ───────── Contact layout ───────── */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(320px, 420px) 1fr;
  gap: clamp(1.75rem, 4vw, 3rem);
  margin-top: 3rem;
  align-items: stretch;
}

.contact-info {
  background: linear-gradient(180deg, #fff 0%, var(--ip-surface) 100%);
  border-radius: 20px;
  padding: 2.25rem;
  border: 1px solid var(--ip-border);
  box-shadow: var(--ip-shadow);
  display: flex;
  flex-direction: column;
}

.contact-info__header {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding-bottom: 1.25rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid var(--ip-border);
}
.contact-info__header .logo-dot {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--ip-accent);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
}
.contact-info__header h2 {
  margin: 0;
  font-size: 1.4rem;
  font-family: var(--ip-font-display);
}
.contact-info__header small {
  display: block;
  color: var(--ip-ink-soft);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .04em;
}

.contact-info__row {
  display: flex;
  gap: 1rem;
  padding: .9rem 0;
  align-items: flex-start;
  border-bottom: 1px dashed var(--ip-border);
}
.contact-info__row:last-of-type { border-bottom: 0; }

.contact-info__icon {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--ip-accent-soft);
  color: var(--ip-accent-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.contact-info__body { display: flex; flex-direction: column; gap: .1rem; }
.contact-info__label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ip-accent-dark);
}
.contact-info__value { color: var(--ip-ink); font-size: 1rem; line-height: 1.55; }
.contact-info__value a { color: var(--ip-ink); }
.contact-info__value a:hover { color: var(--ip-accent-dark); }

.contact-info__footer { margin-top: auto; padding-top: 1.5rem; }

.contact-map {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--ip-shadow-lg);
  border: 1px solid var(--ip-border);
  min-height: 520px;
  background: var(--ip-surface);
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: 0;
  display: block;
}

@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-map, .contact-map iframe { min-height: 380px; }
}

.social-icons {
  display: flex;
  gap: .6rem;
  margin-top: .5rem;
}
.social-icons a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ip-ink);
  color: #fff;
  transition: background .2s ease, transform .15s ease;
}
.social-icons a:hover { background: var(--ip-accent); transform: translateY(-2px); color: #fff; }
.social-icons svg { width: 18px; height: 18px; fill: currentColor; }

.contact-form {
  background: #fff;
  border-radius: 20px;
  padding: 2.25rem;
  border: 1px solid var(--ip-border);
  box-shadow: var(--ip-shadow);
}

.contact-form h2 { margin-top: 0; }

.form-field {
  display: block;
  margin-top: 1.1rem;
}

.form-field label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ip-ink-soft);
  margin-bottom: .35rem;
}

.form-field input,
.form-field textarea {
  display: block;
  width: 100%;
  padding: .85rem 1rem;
  font: inherit;
  font-size: 1rem;
  color: var(--ip-ink);
  background: var(--ip-surface);
  border: 1.5px solid var(--ip-border);
  border-radius: 10px;
  transition: border-color .15s ease, background .15s ease;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--ip-accent);
  background: #fff;
}

.form-field textarea { resize: vertical; min-height: 140px; }
.form-note { margin-top: .75rem; font-size: .85rem; color: var(--ip-muted); }

.form-submit { margin-top: 1.5rem; }

/* ───────── Legal pages ───────── */

.legal-content h2 {
  margin-top: 2.5rem;
  font-size: 1.4rem;
}

.legal-content p { color: var(--ip-ink-soft); }

/* ───────── Footer ───────── */

.site-footer {
  background: var(--ip-ink);
  color: #d9c9b3;
  padding: 4rem 0 2rem;
}

.site-footer a { color: #d9c9b3; }
.site-footer a:hover { color: var(--ip-accent); }

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

.footer-brand { display: flex; flex-direction: column; gap: 1rem; max-width: 320px; }
.footer-brand img { width: 180px; filter: brightness(0) invert(1); opacity: .95; }
.footer-brand p { margin: 0; color: #b6a38a; font-size: .95rem; line-height: 1.6; }

.footer-col h4 {
  font-family: var(--ip-font-body);
  color: #fff;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  margin: 0 0 1.1rem;
}

.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .55rem; }
.footer-col a { font-size: .95rem; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .85rem;
  color: #8a7566;
}

.footer-bottom__left { display: flex; flex-direction: column; gap: .3rem; }
.footer-bottom__left .footer-credits { color: #b6a38a; }
.footer-bottom__left .footer-credits a { color: #fff; font-weight: 500; }
.footer-bottom__left .footer-credits a:hover { color: var(--ip-accent); }
.footer-bottom__right { display: flex; align-items: center; gap: .9rem; }
.footer-bottom__right a { color: #d9c9b3; }
.footer-bottom__right a:hover { color: var(--ip-accent); }
.footer-bottom__right .sep { color: #4a3b30; }

@media (max-width: 560px) {
  .footer-bottom { justify-content: center; text-align: center; }
  .footer-bottom__left { align-items: center; }
}

/* ───────── Responsive ───────── */

@media (max-width: 960px) {
  .site-nav .container { gap: .75rem; }
  .site-nav__links { display: none; }
  .site-nav__links.open {
    display: flex;
    position: absolute;
    top: var(--ip-nav-h);
    left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    padding: 1rem 1.25rem 1.25rem;
    background: #fff;
    border-bottom: 1px solid var(--ip-border);
    box-shadow: 0 16px 40px rgba(28,17,11,0.08);
  }
  .site-nav__links.open .nav-link { padding: .85rem 0; border-bottom: 1px solid var(--ip-border); }
  .site-nav__links.open .nav-link:last-child { border-bottom: 0; }
  .navbar-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .lang-switch { margin-left: auto; margin-right: .5rem; }

  .story-grid { grid-template-columns: 1fr; gap: 2rem; }
  .story-grid--reverse .story-grid__media { order: 0; }

  .contact-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; max-width: 100%; }

  .hero-slider .carousel-caption { left: 6%; right: 6%; text-align: center; }
  .hero-slider .carousel-caption h1 { max-width: 100%; }
  .hero-slider .carousel-caption .cta-row { justify-content: center; }
  .hero-slider .carousel-caption .eyebrow { margin-left: auto; margin-right: auto; }
}

@media (max-width: 560px) {
  :root { --ip-nav-h: 64px; }
  .site-nav__brand img { height: 34px; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .footer-bottom { justify-content: center; text-align: center; }
  .btn { padding: .75rem 1.3rem; font-size: .9rem; }
  .hero-slider .carousel-control-prev,
  .hero-slider .carousel-control-next { width: 12%; }
  .hero-slider .carousel-control-prev-icon,
  .hero-slider .carousel-control-next-icon { width: 2.4rem; height: 2.4rem; padding: .55rem; }
}
