@charset "UTF-8";
/* ==========================================================================
   Minu Affittacamere — Design system fresh & moderno
   ========================================================================== */

:root {
  --color-cream: #f7f2ea;
  --color-cream-soft: #fdfaf4;
  --color-ivory: #efe4cf;
  --color-olive: #6a7a4e;
  --color-olive-dark: #4c5a37;
  --color-olive-soft: #dfe4d1;
  --color-terracotta: #b76b4a;
  --color-terracotta-dark: #9a552f;
  --color-terracotta-soft: #f0d9c9;
  --color-earth: #2f2620;
  --color-earth-2: #453629;
  --color-text: #2c2620;
  --color-muted: #74675a;
  --color-line: #eadfca;
  --color-line-soft: #f2e7d2;
  --color-white: #ffffff;

  --font-serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', 'Helvetica Neue', Arial, sans-serif;

  --shadow-sm: 0 2px 8px rgba(58, 47, 38, 0.06);
  --shadow-md: 0 12px 34px -12px rgba(58, 47, 38, 0.18);
  --shadow-lg: 0 30px 80px -20px rgba(58, 47, 38, 0.28);
  --shadow-hover: 0 40px 90px -25px rgba(58, 47, 38, 0.35);

  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 36px;

  --container-max: 1240px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --nav-h: 84px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-cream);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
  min-height: 100vh;
}

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

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

button { font: inherit; }

::selection { background: var(--color-terracotta); color: var(--color-cream); }

/* Typography */
h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.12;
  color: var(--color-earth);
  letter-spacing: -0.015em;
}

h1 { font-size: clamp(2.4rem, 6vw, 4.6rem); font-weight: 500; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.35rem, 2vw, 1.75rem); }
h4 { font-size: 1.15rem; }

p { margin-bottom: 1em; }

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 28px;
}

/* --------- Utility --------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-olive-dark);
  font-weight: 600;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--color-olive);
}

.section {
  padding: clamp(80px, 11vw, 150px) 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 70px;
}
.section-header .eyebrow { justify-content: center; }
.section-header p {
  color: var(--color-muted);
  font-size: 1.05rem;
  margin-top: 14px;
}

.divider {
  width: 48px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--color-terracotta), transparent);
  margin: 20px auto;
}

/* --------- Buttons --------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 100px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.35s var(--ease);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--color-earth);
  color: var(--color-cream);
}
.btn-primary:hover {
  background: var(--color-terracotta-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  border-color: var(--color-earth);
  color: var(--color-earth);
}
.btn-outline:hover {
  background: var(--color-earth);
  color: var(--color-cream);
  transform: translateY(-2px);
}

.btn-outline-light {
  background: transparent;
  border-color: rgba(247, 242, 234, 0.6);
  color: var(--color-cream);
}
.btn-outline-light:hover {
  background: var(--color-cream);
  color: var(--color-earth);
  border-color: var(--color-cream);
  transform: translateY(-2px);
}

.btn-arrow::after {
  content: '\2192';
  display: inline-block;
  transition: transform 0.35s var(--ease);
}
.btn-arrow:hover::after { transform: translateX(4px); }

/* ==========================================================================
   NAVBAR
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(247, 242, 234, 0.75);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: all 0.35s var(--ease);
}

.navbar.scrolled {
  background: rgba(247, 242, 234, 0.92);
  border-bottom-color: var(--color-line);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 28px;
  max-width: var(--container-max);
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-logo img {
  height: 48px;
  width: auto;
  transition: transform 0.4s var(--ease);
}
.nav-logo:hover img { transform: rotate(-6deg); }

.nav-brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-brand-name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--color-earth);
  font-weight: 600;
}
.nav-brand-sub {
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-olive);
  margin-top: 4px;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
}

.nav-links a:not(.btn) {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--color-text);
  position: relative;
  padding: 8px 0;
}

.nav-links a:not(.btn)::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1.5px;
  background: var(--color-terracotta);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.nav-links a:not(.btn):hover::after,
.nav-links a:not(.btn).active::after { transform: scaleX(1); }
.nav-links a:not(.btn):hover { color: var(--color-earth); }

.nav-cta {
  padding: 12px 22px;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  z-index: 110;
}

.nav-toggle span {
  width: 26px;
  height: 2px;
  background: var(--color-earth);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 40px) 0 90px;
  overflow: hidden;
  background: var(--color-cream);
}

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

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg,
      rgba(247, 242, 234, 0.97) 0%,
      rgba(247, 242, 234, 0.85) 32%,
      rgba(247, 242, 234, 0.35) 60%,
      rgba(58, 47, 38, 0.3) 100%);
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  animation: heroZoom 22s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  0%   { transform: scale(1.02) translate(0, 0); }
  100% { transform: scale(1.1) translate(1%, -1%); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 10px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--color-line);
  border-radius: 100px;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--color-earth);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(8px);
}
.hero-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-olive);
  box-shadow: 0 0 0 3px rgba(106, 122, 78, 0.25);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(106, 122, 78, 0.25); }
  50%      { box-shadow: 0 0 0 6px rgba(106, 122, 78, 0.08); }
}

.hero h1 {
  margin: 0 0 24px;
  color: var(--color-earth);
}
.hero h1 em {
  font-style: italic;
  color: var(--color-terracotta);
  font-weight: 400;
}

.hero-lead {
  font-size: 1.12rem;
  color: var(--color-muted);
  margin-bottom: 36px;
  max-width: 540px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-meta {
  position: absolute;
  right: 40px;
  bottom: 50px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
  color: var(--color-cream);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.hero-meta span {
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-meta span::before {
  content: '';
  display: inline-block;
  width: 30px;
  height: 1px;
  background: var(--color-terracotta-soft);
  order: 1;
}
.hero-meta span::after {
  order: 3;
}

/* Interior hero (secondary pages) */
.hero-inner {
  min-height: 64vh;
  padding: calc(var(--nav-h) + 60px) 0 90px;
  position: relative;
  background: var(--color-earth);
  color: var(--color-cream);
  overflow: hidden;
  text-align: center;
}

.hero-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(47, 38, 32, 0.55) 0%, rgba(47, 38, 32, 0.85) 100%);
  z-index: 1;
}

.hero-inner-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-inner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 22s ease-in-out infinite alternate;
}

.hero-inner .container { position: relative; z-index: 2; }
.hero-inner h1 { color: var(--color-cream); margin: 0 0 12px; }
.hero-inner .eyebrow { color: #d4b998; justify-content: center; }
.hero-inner .eyebrow::before { background: #d4b998; }
.hero-inner .hero-lead { color: rgba(247, 242, 234, 0.8); max-width: 620px; margin: 20px auto 0; }

.breadcrumbs {
  margin-top: 26px;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.75;
}
.breadcrumbs a { position: relative; padding-bottom: 2px; }
.breadcrumbs a:hover { color: #e6c9a7; }

/* ==========================================================================
   SECTIONS BG UTILITIES
   ========================================================================== */
.bg-cream-soft { background: var(--color-cream-soft); }
.bg-ivory { background: var(--color-ivory); }
.bg-earth { background: var(--color-earth); color: var(--color-cream); }
.bg-earth h2, .bg-earth h3 { color: var(--color-cream); }

/* ==========================================================================
   FEATURE / PILLARS (3-col cards)
   ========================================================================== */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  align-items: center;
}

.feature-card {
  background: var(--color-white);
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-line);
  transition: all 0.45s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(183, 107, 74, 0.06) 100%);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
  pointer-events: none;
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}
.feature-card:hover::before { opacity: 1; }

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-ivory) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-terracotta);
  margin-bottom: 26px;
  transition: transform 0.4s var(--ease);
}
.feature-card:hover .feature-icon {
  transform: rotate(-6deg) scale(1.08);
}
.feature-icon svg { width: 28px; height: 28px; }

.feature-card h3 { margin-bottom: 12px; position: relative; }
.feature-card p {
  color: var(--color-muted);
  margin-bottom: 22px;
  font-size: 0.98rem;
  position: relative;
}

.feature-card .link {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-terracotta-dark);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
}
.feature-card .link:hover { color: var(--color-earth); }
.feature-card .link::after {
  content: '\2192';
  transition: transform 0.3s var(--ease);
}
.feature-card .link:hover::after { transform: translateX(4px); }

/* ==========================================================================
   SPLIT (image + text)
   ========================================================================== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split.reverse .split-text { order: 2; }

.split-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
}
.split-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.split-image:hover img { transform: scale(1.04); }
.split-image.wide { aspect-ratio: 5/4; }
.split-image.square { aspect-ratio: 1/1; }

.split-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(47, 38, 32, 0.2) 100%);
  pointer-events: none;
}

/* Decorative badge overlay on split-image */
.split-image .img-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 2;
  background: rgba(247, 242, 234, 0.95);
  color: var(--color-earth);
  padding: 12px 20px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-md);
}

.split-text .eyebrow { color: var(--color-olive-dark); }
.split-text h2 { margin-bottom: 20px; }
.split-text p {
  color: var(--color-muted);
  font-size: 1.02rem;
  line-height: 1.75;
}
.split-text .btn { margin-top: 24px; }

/* ==========================================================================
   SERVICES GRID (page servizi)
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.service-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.45s var(--ease-out);
  border: 1px solid var(--color-line);
  display: flex;
  flex-direction: column;
  position: relative;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}

.service-card .service-image {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.service-card .service-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.service-card:hover .service-image img { transform: scale(1.08); }
.service-card .service-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(47, 38, 32, 0.35) 100%);
  pointer-events: none;
}

.service-card .service-body {
  padding: 30px 28px 34px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-tag {
  align-self: flex-start;
  display: inline-block;
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-olive-dark);
  font-weight: 600;
  margin-bottom: 12px;
  padding: 6px 12px;
  background: var(--color-olive-soft);
  border-radius: 100px;
}

.service-card h3 { margin-bottom: 12px; }
.service-card p {
  color: var(--color-muted);
  font-size: 0.96rem;
  margin-bottom: 20px;
  flex: 1;
}

.service-bullets {
  list-style: none;
  padding: 0;
  margin-top: 12px;
  border-top: 1px solid var(--color-line-soft);
  padding-top: 20px;
}
.service-bullets li {
  font-size: 0.9rem;
  padding-left: 26px;
  position: relative;
  margin-bottom: 10px;
  color: var(--color-text);
}
.service-bullets li:last-child { margin-bottom: 0; }
.service-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: var(--color-olive-soft);
}
.service-bullets li::after {
  content: '\2713';
  position: absolute;
  left: 2px;
  top: 4px;
  color: var(--color-olive-dark);
  font-size: 0.72rem;
  font-weight: 700;
}

/* ==========================================================================
   STATS
   ========================================================================== */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.stat {
  padding: 24px 12px;
  border-radius: var(--radius-md);
  transition: background 0.4s var(--ease);
}
.stat:hover { background: rgba(255,255,255,0.5); }
.stat-num {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  color: var(--color-terracotta-dark);
  line-height: 1;
  font-weight: 500;
}
.stat-lbl {
  margin-top: 12px;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-muted);
  font-weight: 500;
}

/* ==========================================================================
   VALUES (Chi Siamo)
   ========================================================================== */
.value-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.value-item {
  background: var(--color-white);
  padding: 34px 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-line);
  position: relative;
  transition: all 0.4s var(--ease);
}
.value-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.value-num {
  position: absolute;
  top: -14px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-terracotta);
  color: var(--color-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
}
.value-item h4 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--color-earth);
  margin-bottom: 10px;
  letter-spacing: 0;
  text-transform: none;
}
.value-item p { color: var(--color-muted); font-size: 0.98rem; margin: 0; }

/* ==========================================================================
   CTA banner
   ========================================================================== */
.cta-banner {
  background: var(--color-earth);
  color: var(--color-cream);
  padding: clamp(70px, 9vw, 110px) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 30%, rgba(183,107,74,0.22) 0%, transparent 45%),
    radial-gradient(circle at 85% 70%, rgba(106,122,78,0.18) 0%, transparent 45%);
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -140px;
  right: -140px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(183,107,74,0.18), transparent 70%);
  pointer-events: none;
}
.cta-banner .container { position: relative; z-index: 2; }
.cta-banner .eyebrow { color: #d4b998; justify-content: center; }
.cta-banner .eyebrow::before { background: #d4b998; }
.cta-banner h2 { color: var(--color-cream); margin-bottom: 16px; }
.cta-banner p {
  color: rgba(247, 242, 234, 0.85);
  font-size: 1.1rem;
  max-width: 580px;
  margin: 0 auto 32px;
}
.cta-banner .btn { margin: 0 6px 10px; }

/* ==========================================================================
   MARQUEE (fresh scrolling text strip)
   ========================================================================== */
.marquee {
  overflow: hidden;
  padding: 24px 0;
  background: var(--color-earth-2);
  color: var(--color-cream);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.marquee-track {
  display: flex;
  gap: 60px;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.marquee-item {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-style: italic;
  color: rgba(247,242,234,0.85);
  display: inline-flex;
  align-items: center;
  gap: 60px;
  white-space: nowrap;
}
.marquee-item::after {
  content: '\2726';
  color: var(--color-terracotta);
  font-size: 1rem;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 50px;
  align-items: start;
}

.contact-info {
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding: 44px 38px;
  position: sticky;
  top: 110px;
}
.contact-info h3 { margin-bottom: 4px; }
.contact-info .divider { margin: 16px 0 24px; margin-left: 0; width: 40px; }

.info-block {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--color-line-soft);
}
.info-block:last-child { border-bottom: none; padding-bottom: 0; }

.info-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-ivory) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-terracotta-dark);
  flex-shrink: 0;
}
.info-icon svg { width: 20px; height: 20px; }

.info-block h4 {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-olive-dark);
  font-weight: 600;
  margin-bottom: 6px;
}
.info-block p, .info-block a {
  color: var(--color-text);
  font-size: 1rem;
  line-height: 1.5;
  word-break: break-word;
}
.info-block a:hover { color: var(--color-terracotta); }
.info-block .info-note {
  font-size: 0.85rem;
  color: var(--color-muted);
  margin-top: 4px;
}

/* Form */
.contact-form {
  background: var(--color-white);
  padding: 48px 44px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-line);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-row + .form-row,
.form-row + .form-field,
.form-field + .form-row { margin-top: 4px; }

.form-field {
  margin-bottom: 22px;
  position: relative;
}
.form-field label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 8px;
  font-weight: 600;
}
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  background: var(--color-cream-soft);
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--color-text);
  transition: all 0.3s var(--ease);
  -webkit-appearance: none;
  appearance: none;
}
.form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath fill='none' stroke='%2374675a' stroke-width='1.5' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--color-olive);
  background: var(--color-white);
  box-shadow: 0 0 0 4px rgba(106, 122, 78, 0.12);
}
.form-field textarea { min-height: 140px; resize: vertical; }

.form-field.error input,
.form-field.error textarea,
.form-field.error select { border-color: var(--color-terracotta); background: rgba(240, 217, 201, 0.2); }
.form-field .error-msg {
  color: var(--color-terracotta-dark);
  font-size: 0.82rem;
  margin-top: 6px;
  display: none;
}
.form-field.error .error-msg { display: block; }

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 8px 0 24px;
  font-size: 0.9rem;
  color: var(--color-muted);
  cursor: pointer;
}
.form-check input {
  margin-top: 3px;
  accent-color: var(--color-olive);
}
.form-check a { color: var(--color-terracotta); text-decoration: underline; }

.form-success {
  display: none;
  padding: 20px 24px;
  background: rgba(106, 122, 78, 0.12);
  border-left: 4px solid var(--color-olive);
  border-radius: var(--radius-sm);
  color: var(--color-olive-dark);
  margin-bottom: 20px;
}
.form-success.show { display: block; }

.contact-form .btn { width: 100%; }

/* --------- Map --------- */
.map-wrap {
  margin-top: 60px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-line);
  aspect-ratio: 21/9;
  background: var(--color-cream-soft);
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ==========================================================================
   PHOTO STRIP (gallery)
   ========================================================================== */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 60px;
}
.photo-strip .photo {
  aspect-ratio: 3/4;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.photo-strip .photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.photo-strip .photo:hover img { transform: scale(1.08); }
.photo-strip .photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(47, 38, 32, 0.5), transparent 50%);
}

/* ==========================================================================
   BLOG
   ========================================================================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-line);
  transition: all 0.45s var(--ease-out);
  color: inherit;
  position: relative;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}

.blog-card .blog-image {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
}
.blog-card .blog-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.blog-card:hover .blog-image img { transform: scale(1.05); }

.blog-card .blog-body {
  padding: 30px 32px 36px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 16px;
}
.blog-meta .cat {
  color: var(--color-olive-dark);
  font-weight: 600;
  background: var(--color-olive-soft);
  padding: 4px 10px;
  border-radius: 100px;
}
.blog-meta .dot-sep::before {
  content: '·';
  margin: 0 6px;
  opacity: 0.6;
}

.blog-card h3 {
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  margin-bottom: 12px;
}

.blog-card .blog-excerpt {
  color: var(--color-muted);
  font-size: 0.98rem;
  margin-bottom: 22px;
  flex: 1;
}

.blog-card .blog-link {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-terracotta-dark);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
}
.blog-card .blog-link::after {
  content: '\2192';
  transition: transform 0.3s var(--ease);
}
.blog-card:hover .blog-link::after { transform: translateX(4px); }

/* Article layout (single post) */
.article {
  max-width: 780px;
  margin: 0 auto;
}
.article .article-meta {
  display: flex;
  gap: 14px;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 20px;
  align-items: center;
  flex-wrap: wrap;
}
.article .article-meta .cat {
  color: var(--color-olive-dark);
  font-weight: 600;
  background: var(--color-olive-soft);
  padding: 5px 12px;
  border-radius: 100px;
}
.article h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin-bottom: 24px;
}
.article .lead {
  font-size: 1.2rem;
  color: var(--color-muted);
  line-height: 1.7;
  margin-bottom: 40px;
  font-family: var(--font-serif);
  font-style: italic;
}

.article-hero {
  aspect-ratio: 21/9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 50px;
  box-shadow: var(--shadow-lg);
}
.article-hero img { width: 100%; height: 100%; object-fit: cover; }

.article-body {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--color-text);
}
.article-body h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 50px 0 18px;
}
.article-body h3 {
  font-size: 1.3rem;
  margin: 32px 0 14px;
}
.article-body p { margin-bottom: 20px; }
.article-body ul, .article-body ol { padding-left: 24px; margin: 0 0 22px; }
.article-body li { margin-bottom: 8px; }
.article-body blockquote {
  margin: 40px 0;
  padding: 30px 36px;
  background: var(--color-cream-soft);
  border-left: 4px solid var(--color-terracotta);
  border-radius: var(--radius-md);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--color-earth);
}
.article-body a { color: var(--color-terracotta-dark); text-decoration: underline; text-underline-offset: 3px; }
.article-body strong { color: var(--color-earth); }

.article-footer {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--color-line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

/* Home blog preview */
.blog-preview {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* ==========================================================================
   PRIVACY / LEGAL
   ========================================================================== */
.legal-content {
  max-width: 820px;
  margin: 0 auto;
  background: var(--color-white);
  padding: 60px 60px 70px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-line);
}

.legal-content h1 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 12px; }
.legal-content h2 {
  font-size: 1.4rem;
  margin: 40px 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--color-line);
}
.legal-content h3 { font-size: 1.15rem; margin: 24px 0 10px; }
.legal-content p, .legal-content li { color: var(--color-text); line-height: 1.75; }
.legal-content ul, .legal-content ol { padding-left: 24px; margin: 12px 0 20px; }
.legal-content li { margin-bottom: 8px; }
.legal-content a { color: var(--color-terracotta); }
.legal-content a:hover { text-decoration: underline; }
.legal-meta {
  color: var(--color-muted);
  font-size: 0.9rem;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--color-line);
  margin-bottom: 20px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: #241d17;
  color: rgba(247, 242, 234, 0.8);
  padding: 90px 0 30px;
  font-size: 0.95rem;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--color-terracotta), transparent);
}

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

.footer-brand h3 {
  color: var(--color-cream);
  font-family: var(--font-serif);
  font-size: 1.6rem;
  margin-bottom: 12px;
}
.footer-brand p { max-width: 320px; opacity: 0.7; font-size: 0.92rem; line-height: 1.7; }

.footer-col h4 {
  color: var(--color-cream);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 22px;
  font-weight: 600;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; line-height: 1.5; }
.footer-col a { transition: color 0.3s var(--ease), padding 0.3s var(--ease); }
.footer-col a:hover { color: var(--color-terracotta-soft); padding-left: 4px; }

.footer-bottom {
  border-top: 1px solid rgba(247, 242, 234, 0.08);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.78rem;
  opacity: 0.75;
  letter-spacing: 0.04em;
}
.footer-bottom a { color: inherit; text-decoration: none; }
.footer-bottom a:hover { opacity: 1; color: var(--color-terracotta-soft); }
.footer-bottom .made-by a {
  color: var(--color-terracotta-soft);
  border-bottom: 1px dotted rgba(240, 217, 201, 0.5);
  padding-bottom: 1px;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.footer-bottom .made-by a:hover {
  color: var(--color-cream);
  border-color: var(--color-cream);
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1080px) {
  .split { gap: 60px; }
  .nav-links { gap: 24px; }
}

@media (max-width: 960px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: 1fr 1fr; gap: 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split.reverse .split-text { order: 0; }
  .split-image { aspect-ratio: 5/4; max-width: 600px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info { position: static; }
  .value-list { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .photo-strip { grid-template-columns: repeat(2, 1fr); }
  .blog-grid, .blog-preview { grid-template-columns: 1fr; gap: 24px; }
  .hero-meta { display: none; }
  .legal-content { padding: 44px 30px; }
  .nav-brand-name { font-size: 1.3rem; }
  .article-hero { aspect-ratio: 16/10; margin-bottom: 30px; }
  .article-body blockquote { padding: 22px 24px; font-size: 1.05rem; }
}

@media (max-width: 720px) {
  :root { --nav-h: 72px; }
  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    height: 100dvh;
    width: 82%;
    max-width: 340px;
    background: var(--color-cream-soft);
    flex-direction: column;
    padding: 100px 32px 40px;
    gap: 22px;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease-out);
    box-shadow: -10px 0 40px rgba(47, 38, 32, 0.18);
    align-items: flex-start;
    overflow-y: auto;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links > li > a:not(.btn) {
    font-size: 1.2rem;
    font-family: var(--font-serif);
    color: var(--color-earth);
  }
  .nav-links > li > a:not(.btn)::after {
    background: var(--color-terracotta);
    height: 2px;
    bottom: -4px;
    transform-origin: left;
  }
  .nav-links li:not(:last-child) {
    padding-bottom: 22px;
    border-bottom: 1px solid var(--color-line);
    width: 100%;
  }
  .nav-links .nav-cta {
    margin-top: 12px;
    padding: 16px 26px;
    font-size: 0.82rem;
    align-self: stretch;
    color: var(--color-cream);
    background: var(--color-earth);
  }
  .nav-links .nav-cta::after { display: none; }

  .nav-logo img { height: 40px; }
  .nav-brand-name { font-size: 1.2rem; }
  .nav-brand-sub { font-size: 0.6rem; }

  .nav-inner { padding: 14px 18px; }

  /* Body scroll lock when mobile menu is open */
  body.menu-open { overflow: hidden; }

  .grid-3, .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .stats { grid-template-columns: 1fr 1fr; }
  .hero { min-height: 92vh; padding: calc(var(--nav-h) + 30px) 0 60px; }
  .hero-inner { min-height: 52vh; padding: calc(var(--nav-h) + 60px) 0 70px; }
  .hero h1 { font-size: clamp(2.2rem, 9vw, 3rem); }

  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }

  .cta-banner .btn { display: block; margin: 0 auto 14px; max-width: 320px; }

  .contact-form { padding: 32px 24px; }
  .contact-info { padding: 32px 24px; }

  .marquee-item { font-size: 1.1rem; gap: 40px; }
  .marquee-track { gap: 40px; }

  .feature-card { padding: 32px 26px; }

  .legal-content h2 { font-size: 1.2rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .section { padding: 70px 0; }
  .section-header { margin-bottom: 40px; }
  h2 { font-size: 1.8rem; }
  .hero-badge { font-size: 0.72rem; padding: 6px 12px 6px 8px; }
  .stats { gap: 16px; }
  .stat { padding: 16px 8px; }
  .stat-num { font-size: 2.2rem; }
  .stat-lbl { font-size: 0.7rem; }
  .photo-strip { grid-template-columns: 1fr 1fr; gap: 10px; }
  .footer { padding: 60px 0 30px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
