:root {
  --sand: #f4e7d3;
  --sand-deep: #e6d3b3;
  --lagon: #4cb5ae;
  --lagon-deep: #1f7c77;
  --ink: #1d2a35;
  --ink-soft: #4a5764;
  --white: #ffffff;
  --shadow: 0 8px 30px rgba(31, 124, 119, 0.10);
  --radius: 14px;
  --max: 1100px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  scroll-behavior: smooth;
}

h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 0.4em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); line-height: 1.1; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.25rem; }

a { color: var(--lagon-deep); text-decoration: none; }
a:hover { text-decoration: underline; }

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(31, 124, 119, 0.08);
}
.brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
}
.brand span { color: var(--lagon-deep); font-style: italic; }
.nav nav { display: flex; gap: 1.4rem; }
.nav nav a { color: var(--ink-soft); font-size: 0.95rem; font-weight: 500; }
.nav nav a:hover { color: var(--lagon-deep); text-decoration: none; }

@media (max-width: 640px) {
  .nav nav { display: none; }
}

/* HERO */
.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  padding: 4rem 1.5rem 3rem;
  background: linear-gradient(135deg, var(--sand) 0%, #fdf6ea 60%, #e8f4f3 100%);
  overflow: hidden;
}
.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: var(--lagon-deep);
  margin: 0 0 0.6em;
  font-weight: 600;
}
.lead {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 620px;
  margin: 1rem 0 1.8rem;
}
.cta-row { display: flex; gap: 0.8rem; flex-wrap: wrap; }
.hero-deco {
  position: absolute;
  right: -100px;
  top: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(76, 181, 174, 0.22) 0%, transparent 70%);
  z-index: 1;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.98rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}
.btn-primary {
  background: var(--lagon-deep);
  color: var(--white);
}
.btn-primary:hover { background: var(--ink); transform: translateY(-1px); text-decoration: none; }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--white); text-decoration: none; }
.btn-small { padding: 0.55rem 1.1rem; font-size: 0.88rem; background: var(--lagon-deep); color: var(--white); }
.btn-small:hover { background: var(--ink); text-decoration: none; }

/* SECTIONS */
.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 5rem 1.5rem;
}
.section-alt {
  max-width: none;
  background: linear-gradient(180deg, #fdf9f1 0%, #fff 100%);
}
.section-alt > * {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}
.section-head { text-align: center; margin-bottom: 3rem; }
.section-head p { color: var(--ink-soft); max-width: 560px; margin: 0 auto; }

/* GRIDS */
.grid { display: grid; gap: 1.4rem; }
.grid-cards { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.grid-2 { grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.grid-shops { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
@media (max-width: 720px) {
  .grid-2 { grid-template-columns: 1fr; }
}

/* CARDS */
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 0;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 14px 40px rgba(31, 124, 119, 0.16); }
.card-img {
  height: 180px;
  background-size: cover;
  background-position: center;
}
.card-img-1 { background: linear-gradient(135deg, #f4e7d3, #e6d3b3 60%, #4cb5ae); }
.card-img-2 { background: linear-gradient(135deg, #d9efee, #4cb5ae 80%, #1f7c77); }
.card-img-3 { background: linear-gradient(135deg, #fdf6ea, #f4e7d3 50%, #b8e0dc); }
.card-img-4 { background: linear-gradient(135deg, #e6d3b3, #c9b289 60%, #1f7c77); }
.card h3, .card p, .card .price { padding: 0 1.2rem; }
.card h3 { padding-top: 1.1rem; }
.card p { color: var(--ink-soft); font-size: 0.94rem; }
.price {
  display: block;
  padding-bottom: 1.2rem;
  font-weight: 600;
  color: var(--lagon-deep);
  font-size: 0.92rem;
}

/* VALUES */
.values { list-style: none; padding: 0; margin: 0; display: grid; gap: 1rem; }
.values li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--white);
  padding: 1rem 1.2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.values span { font-size: 1.6rem; }
.values strong { color: var(--ink); }

/* SHOPS */
.shop {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.4rem 1.4rem;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--lagon);
}
.shop h3 { margin-bottom: 0.4rem; }
.shop p { margin: 0; color: var(--ink-soft); font-size: 0.95rem; }
.shop-cta { background: var(--lagon-deep); color: var(--white); border-top-color: var(--sand-deep); }
.shop-cta h3, .shop-cta p { color: var(--white); }
.shop-cta .btn-small { background: var(--white); color: var(--lagon-deep); margin-top: 0.8rem; }
.shop-cta .btn-small:hover { background: var(--sand); color: var(--ink); }

/* FORM */
.contact-form {
  max-width: 640px;
  margin: 0 auto;
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid;
  gap: 1rem;
}
.contact-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 540px) { .contact-form .row { grid-template-columns: 1fr; } }
.contact-form label {
  display: flex;
  flex-direction: column;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink-soft);
  gap: 0.35rem;
}
.contact-form input, .contact-form textarea, .contact-form select {
  font-family: inherit;
  font-size: 1rem;
  padding: 0.65rem 0.85rem;
  border: 1.5px solid #e3dccc;
  border-radius: 10px;
  background: #fdfaf3;
  color: var(--ink);
  transition: border-color 0.15s;
}
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus {
  outline: none;
  border-color: var(--lagon-deep);
}
.contact-form button { justify-self: start; }
.form-status { margin: 0; font-size: 0.92rem; min-height: 1.2em; }
.form-status.ok { color: var(--lagon-deep); }
.form-status.err { color: #b3261e; }

/* NOTE */
.note {
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.88rem;
  margin-top: 2rem;
  font-style: italic;
}

/* FOOTER */
.footer {
  background: var(--ink);
  color: #c9d1d9;
  padding: 2rem 1.5rem;
  text-align: center;
  font-size: 0.88rem;
}
.footer p { margin: 0.2rem 0; }
.footer .version { color: #6c7884; font-size: 0.78rem; }
