/* === Template V3 — Verde Salvia · Cormorant · Layout Orizzontale === */
:root {
  --sage:        #2C5545;
  --sage-dark:   #1D3C30;
  --sage-light:  #4A7D69;
  --stone:       #F3F1EC;
  --stone-dark:  #E6E2D9;
  --ink:         #16180E;
  --white:       #FFFFFF;
  --muted:       #6E6C65;
  --border:      #DEDAD2;
  --shadow:      0 8px 32px rgba(22, 24, 14, 0.09);
  --radius:      10px;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--stone);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; object-fit: cover; }
a { color: var(--sage); text-decoration: none; transition: color .2s; }
a:hover { color: var(--sage-dark); }

.container { max-width: 1160px; margin: 0 auto; padding: 0 1.5rem; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  font-weight: 600;
  line-height: 1.12;
  margin: 0 0 .5rem;
}
h1 { font-size: clamp(3rem, 6.5vw, 5.5rem); font-weight: 700; }
h1 em { font-style: italic; color: var(--white); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h2 em { font-style: italic; color: var(--sage); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); }
h4 { font-size: 1.15rem; margin-bottom: .3rem; }
p { color: var(--muted); margin: 0 0 1rem; line-height: 1.7; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: .8rem;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .72rem 1.35rem;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .03em;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .15s, background .2s, color .2s, border-color .2s;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--sage); color: var(--white); }
.btn-primary:hover { background: var(--sage-dark); color: var(--white); }
.btn-outline { border-color: var(--sage); color: var(--sage); background: transparent; }
.btn-outline:hover { background: var(--sage); color: var(--white); }
.btn-outline-light { border-color: rgba(255,255,255,.6); color: var(--white); background: transparent; }
.btn-outline-light:hover { background: rgba(255,255,255,.12); }
.btn-ghost { background: var(--stone-dark); color: var(--ink); }
.btn-ghost:hover { background: var(--sage); color: var(--white); }
.btn-lg { padding: 1rem 1.8rem; font-size: 1rem; }
.btn-sm { padding: .5rem .95rem; font-size: .82rem; }
.btn-full { width: 100%; justify-content: center; padding: .9rem; font-size: .95rem; }

/* ── HEADER ── */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(243,241,236,.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 1rem; padding: .9rem 1.5rem;
}
.logo { display: flex; align-items: center; gap: .7rem; color: var(--ink); }
.logo-mark {
  width: 40px; height: 40px; border-radius: 4px;
  background: var(--sage); color: var(--white);
  display: grid; place-items: center;
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 700;
}
.logo-text {
  font-family: var(--font-display); font-size: 1.1rem;
  font-weight: 600; line-height: 1.1; color: var(--ink);
}
.logo-text small {
  display: block; font-size: .72rem;
  font-family: var(--font-body); font-weight: 400;
  color: var(--muted); letter-spacing: .04em;
}
.nav { display: flex; gap: 1.8rem; }
.nav a { color: var(--muted); font-size: .9rem; font-weight: 500; }
.nav a:hover { color: var(--ink); }
.header-actions { display: flex; gap: .5rem; }
.menu-toggle { display: none; background: none; border: 0; font-size: 1.5rem; cursor: pointer; color: var(--ink); }

/* ── MARQUEE ── */
.marquee-wrap {
  background: var(--sage);
  overflow: hidden;
  padding: .55rem 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
}
.marquee-track span {
  padding-right: 3rem;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 90svh;
  display: grid;
  align-items: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-color: var(--sage-dark);
  background-image: linear-gradient(160deg, rgba(22,24,14,.72) 0%, rgba(22,24,14,.35) 100%), url('images/hero-shop.jpg');
  background-size: cover;
  background-position: center;
}
.hero-content {
  position: relative; z-index: 1;
  padding: 5rem 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hero-card {
  background: rgba(22,24,14,.55);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.1);
  border-bottom: none;
  border-radius: 8px 8px 0 0;
  padding: 3rem 3.5rem 2.8rem;
  max-width: 680px;
}
.hero-card .eyebrow { color: rgba(255,255,255,.55); }
.hero-card h1 { color: var(--white); margin-bottom: 1rem; }
.hero-card .lead { color: rgba(255,255,255,.78); font-size: 1.1rem; margin-bottom: 2rem; }
.hero-cta { display: flex; gap: .8rem; flex-wrap: wrap; }

.hero-stat-row {
  display: flex;
  align-items: center;
  background: var(--white);
  border-radius: 0 0 0 0;
  padding: 1.3rem 3.5rem;
  gap: 2.5rem;
  max-width: 680px;
  border: 1px solid var(--border);
  border-top: none;
  margin-bottom: 0;
}
.hero-stat { display: flex; flex-direction: column; gap: .1rem; }
.stat-n {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}
.stat-l { font-size: .72rem; color: var(--muted); letter-spacing: .04em; }
.hero-stat-div { width: 1px; height: 36px; background: var(--border); }

/* ── SECTIONS ── */
.section { padding: 6rem 0; }
.section-alt { background: var(--white); }

.section-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: end;
  margin-bottom: 4rem;
}
.section-intro-text { font-size: 1.05rem; color: var(--muted); line-height: 1.75; }

.section-head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3.5rem;
  gap: 1rem;
}

/* ── ABOUT GRID ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}
.about-img-main, .about-img-side {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-img-main { height: 520px; }
.about-img-main img { width: 100%; height: 100%; }
.about-img-side { height: 520px; margin-top: 0; }
.about-img-side img { width: 100%; height: 100%; }

.about-features {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--stone-dark);
  border-radius: var(--radius);
  padding: 2.4rem 2rem;
  height: 520px;
  justify-content: center;
}
.about-feature {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  padding: .8rem 0;
}
.feature-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--sage);
  opacity: .35;
  line-height: 1;
  flex-shrink: 0;
  width: 2.5rem;
  text-align: right;
}
.about-feature h4 { color: var(--ink); font-size: 1rem; margin-bottom: .3rem; }
.about-feature p { font-size: .88rem; color: var(--muted); margin: 0; }
.divider-diamond {
  text-align: center;
  color: var(--sage);
  opacity: .3;
  font-size: .8rem;
  padding: .3rem 0;
}

/* ── SERVICES ── */
.services-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.service-card {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform .25s;
}
.service-card:hover { transform: translateY(-3px); }
.service-card--rev { grid-template-columns: 1fr 420px; }
.service-card--rev .service-img { order: 2; }
.service-card--rev .service-body { order: 1; }

.service-img {
  position: relative;
  overflow: hidden;
  height: 280px;
  background: var(--stone-dark);
}
.service-img img { width: 100%; height: 100%; transition: transform .4s; }
.service-card:hover .service-img img { transform: scale(1.04); }
.service-tag {
  position: absolute; top: 14px; left: 14px;
  background: var(--sage); color: var(--white);
  font-size: .72rem; font-weight: 600;
  letter-spacing: .08em; padding: 4px 10px;
  border-radius: 3px;
}
.service-body {
  padding: 2.4rem 2.8rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: .8rem;
}
.service-body h3 { margin-bottom: .4rem; }
.service-body p { font-size: .95rem; }
.service-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: .8rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--sage);
}
.divider-line {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.2rem 0; color: var(--sage); opacity: .3;
  font-size: .9rem;
}
.divider-line::before,
.divider-line::after {
  content: '';
  flex: 1; height: 1px;
  background: var(--border);
}

/* ── MASONRY GALLERY ── */
.masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  align-items: start;
}
.masonry-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.masonry-col--offset { margin-top: 2.5rem; }
.masonry-col img {
  width: 100%; border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--stone-dark);
  transition: transform .3s;
  aspect-ratio: 3/4;
}
.masonry-col img:nth-child(2) { aspect-ratio: 3/3.5; }
.masonry-col img:hover { transform: scale(1.02); }

/* ── CONTACTS ── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.contact-info h2 { margin-bottom: .8rem; }
.contact-info > p { margin-bottom: 1.5rem; }
.contact-list {
  list-style: none; padding: 0;
  display: flex; flex-direction: column; gap: .8rem;
  margin-bottom: 2rem;
}
.contact-list li {
  display: flex; gap: .9rem; align-items: flex-start;
  padding: .9rem 1rem;
  background: var(--stone);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.c-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: .1rem; }
.contact-list strong { display: block; font-size: .8rem; font-weight: 600; color: var(--ink); }
.contact-list span, .contact-list a { font-size: .9rem; color: var(--muted); }
.contact-list a:hover { color: var(--sage); }
.contact-cta { display: flex; gap: .8rem; flex-wrap: wrap; }

.contact-form {
  background: var(--stone);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.2rem;
  display: grid; gap: 1rem;
  box-shadow: var(--shadow);
}
.form-intro { font-size: .88rem; color: var(--muted); margin-bottom: .2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-form label {
  display: grid; gap: .4rem;
  font-size: .82rem; font-weight: 600; color: var(--ink);
}
.optional { font-size: .75rem; font-weight: 400; color: var(--muted); }
.contact-form input,
.contact-form textarea {
  font: inherit; padding: .7rem .9rem;
  border: 1.5px solid var(--border); border-radius: 6px;
  background: var(--white); color: var(--ink);
  transition: border-color .2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none; border-color: var(--sage);
}
.form-status {
  padding: .75rem 1rem; border-radius: 6px;
  background: var(--sage); color: var(--white);
  font-size: .88rem; margin: 0;
}

/* ── FOOTER ── */
.footer { background: var(--ink); color: rgba(255,255,255,.55); padding: 4rem 0 1.5rem; }
.footer-inner {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem; padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer strong { display: block; font-family: var(--font-display); color: var(--white); font-size: 1rem; margin-bottom: .7rem; }
.footer p { color: rgba(255,255,255,.45); font-size: .88rem; margin: 0; line-height: 1.7; }
.footer a { color: rgba(255,255,255,.45); font-size: .88rem; }
.footer a:hover { color: var(--white); }
.footer-brand strong { font-size: 1.3rem; }
.footer-nav { display: flex; flex-direction: column; gap: .5rem; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 1.5rem; font-size: .8rem;
  color: rgba(255,255,255,.3);
}
.footer-bottom a { color: rgba(255,255,255,.3); font-size: .8rem; }
.footer-bottom a:hover { color: rgba(255,255,255,.6); }

/* ── FLOAT BAR ── */
.float-bar {
  display: none;
  position: fixed; bottom: 18px; left: 50%;
  transform: translateX(-50%);
  background: var(--ink);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 100px;
  padding: 8px 8px 8px 18px;
  align-items: center; gap: 8px;
  box-shadow: 0 8px 32px rgba(22,24,14,.45);
  z-index: 200; white-space: nowrap;
}
.float-bar-label { color: rgba(255,255,255,.55); font-size: .8rem; font-weight: 500; }
.float-bar-btn {
  background: var(--white); color: var(--ink);
  border-radius: 100px; padding: 8px 16px;
  font-size: .82rem; font-weight: 700;
  text-decoration: none; transition: opacity .18s;
}
.float-bar-btn--maps { background: var(--sage); color: var(--white); }
.float-bar-btn:hover { opacity: .85; }

/* ── RESPONSIVE ── */
@media (max-width: 1000px) {
  .about-grid { grid-template-columns: 1fr 1fr; }
  .about-img-side { display: none; }
  .service-card,
  .service-card--rev { grid-template-columns: 1fr; }
  .service-card--rev .service-img { order: 0; }
  .service-card--rev .service-body { order: 0; }
  .service-img { height: 240px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 780px) {
  .nav, .header-actions { display: none; }
  .menu-toggle { display: block; }
  .nav.open {
    display: flex; flex-direction: column; gap: 0;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--stone); border-bottom: 1px solid var(--border);
    padding: 1rem 1.5rem; z-index: 99;
  }
  .section { padding: 4rem 0; }
  .section-intro { grid-template-columns: 1fr; gap: 1rem; }
  .hero-card { padding: 2rem 1.5rem; }
  .hero-stat-row { padding: 1rem 1.5rem; gap: 1.5rem; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img-main { height: 300px; }
  .about-features { height: auto; }
  .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
  .masonry { grid-template-columns: repeat(2, 1fr); }
  .masonry-col--offset { margin-top: 0; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: .5rem; }
  .form-row { grid-template-columns: 1fr; }
  .float-bar { display: flex; }
}
@media (max-width: 480px) {
  .masonry { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-stat-row { flex-wrap: wrap; gap: 1rem; }
  .hero-stat-div { display: none; }
  .section-head-row { flex-direction: column; align-items: flex-start; }
}
