:root {
  --primary: #1F4D4A;
  --primary-dark: #143432;
  --secondary: #E8D9B7;
  --accent: #C7572D;
  --bg: #F7F4EE;
  --bg-alt: #FFFFFF;
  --text: #1A2624;
  --text-soft: #54625F;
  --border: #DCD3BD;
  --shadow: 0 4px 18px rgba(20, 52, 50, 0.08);
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.2; margin: 0 0 0.5em; color: var(--primary-dark); }
h1 { font-size: clamp(2rem, 4.5vw, 3.4rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 0.6em; }
h3 { font-size: 1.25rem; font-family: var(--sans); font-weight: 600; }
p { margin: 0 0 1em; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* lang switch */
.lang-switch {
  position: absolute; top: 18px; right: 24px; z-index: 5;
  background: var(--bg-alt); border-radius: 999px; padding: 4px 4px;
  box-shadow: var(--shadow);
  display: inline-flex; gap: 2px;
}
.lang-switch a {
  padding: 6px 14px; border-radius: 999px; font-size: 13px; font-weight: 500;
  color: var(--text-soft);
}
.lang-switch a.active { background: var(--primary); color: #fff; }
.lang-switch a:hover { text-decoration: none; color: var(--primary-dark); }
.lang-switch a.active:hover { color: #fff; }

/* hero */
.hero {
  position: relative;
  padding: 88px 0 72px;
  background:
    linear-gradient(135deg, rgba(31,77,74,0.92), rgba(20,52,50,0.95)),
    radial-gradient(ellipse at top right, rgba(199,87,45,0.18), transparent 60%),
    var(--primary);
  color: #fff;
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 18% 30%, rgba(232,217,183,0.08) 0, transparent 28%),
    radial-gradient(circle at 80% 70%, rgba(232,217,183,0.06) 0, transparent 22%);
  pointer-events: none;
}
.hero__inner { position: relative; max-width: 880px; }
.hero h1 { color: #fff; margin-bottom: 0.4em; }
.hero .tagline { color: rgba(255,255,255,0.86); font-size: 1.15rem; margin-bottom: 2em; max-width: 720px; }

.ctas { display: flex; flex-wrap: wrap; gap: 14px; }
.btn {
  display: inline-block; padding: 14px 22px; border-radius: 6px;
  font-weight: 500; font-size: 15px; transition: transform .15s, background .2s;
  border: 1px solid transparent;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; }
.btn--primary { background: var(--accent); color: #fff; }
.btn--primary:hover { background: #b04923; color: #fff; }
.btn--secondary { background: #fff; color: var(--primary-dark); }
.btn--secondary:hover { background: var(--secondary); color: var(--primary-dark); }
.btn--tertiary { background: transparent; color: #fff; border-color: rgba(255,255,255,0.55); }
.btn--tertiary:hover { background: rgba(255,255,255,0.1); color: #fff; }

/* sections */
.section { padding: 72px 0; }
.section--alt { background: var(--bg-alt); }
.section p a { color: var(--primary); text-decoration: none; border-bottom: 1px solid rgba(31,77,74,0.28); transition: border-color 0.15s ease; }
.section p a:hover { border-bottom-color: var(--primary); }
.section--pricing { background: var(--secondary); }
.section--pricing h2 { color: var(--primary-dark); }
.section--cta { background: var(--primary); color: #fff; }
.section--cta h2 { color: #fff; }
.section--cta .intro { color: rgba(255,255,255,0.8); }

.intro { font-size: 1.08rem; color: var(--text-soft); margin-bottom: 2em; max-width: 760px; }

/* grids */
.grid { display: grid; gap: 22px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) {
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .hero { padding: 64px 0 56px; }
  .section { padding: 56px 0; }
}

/* cards */
.card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 22px 22px 20px;
  position: relative;
  transition: transform .2s, box-shadow .2s;
}
.card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.card h3 { margin-bottom: 0.4em; color: var(--primary-dark); }
.card .badge {
  position: absolute; top: -10px; left: 18px;
  background: var(--accent); color: #fff;
  font-size: 11px; font-weight: 600; padding: 4px 10px;
  border-radius: 4px; letter-spacing: 0.04em; text-transform: uppercase;
}
.card .example {
  margin-top: 10px;
  font-size: 14px; color: var(--accent); font-weight: 500;
  border-top: 1px dashed var(--border); padding-top: 10px;
}

.card--room { background: linear-gradient(to bottom, #fff, #faf6ec); }
.badges { margin-top: 12px; display: flex; flex-wrap: wrap; gap: 6px; }
.badges span {
  font-size: 12px; padding: 3px 9px; border-radius: 99px;
  background: var(--secondary); color: var(--primary-dark);
}

/* two col */
.two-col { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: start; }
@media (max-width: 768px) { .two-col { grid-template-columns: 1fr; } }
.bullets { list-style: none; padding: 0; margin: 0; }
.bullets li {
  padding: 10px 0 10px 28px; position: relative;
  border-bottom: 1px solid var(--border);
}
.bullets li::before {
  content: "✓"; position: absolute; left: 0; top: 10px;
  color: var(--accent); font-weight: 700;
}
.bullets li:last-child { border-bottom: none; }

/* steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 768px) { .steps { grid-template-columns: 1fr; } }
.step {
  background: var(--bg-alt);
  border-radius: 10px;
  padding: 28px 24px 22px;
  border: 1px solid var(--border);
  position: relative;
}
.step__n {
  display: inline-flex; width: 38px; height: 38px;
  align-items: center; justify-content: center;
  background: var(--primary); color: #fff;
  border-radius: 50%; font-weight: 600;
  margin-bottom: 14px;
}

/* pricing */
.pricing-band {
  display: inline-flex; align-items: baseline; gap: 8px;
  background: var(--bg-alt); border-radius: 10px; padding: 18px 28px;
  margin: 18px 0 14px; box-shadow: var(--shadow);
}
.price-from, .price-to { font-family: var(--serif); font-size: 2.2rem; font-weight: 700; color: var(--primary-dark); }
.price-dash { color: var(--text-soft); font-size: 1.2rem; }
.price-unit { color: var(--text-soft); font-size: 1rem; }
.note { color: var(--text-soft); font-size: 14px; }

/* quotes */
.quote {
  background: var(--bg-alt); border-left: 4px solid var(--accent);
  padding: 22px 24px; margin: 0; border-radius: 0 8px 8px 0;
  box-shadow: var(--shadow);
}
.quote p { font-style: italic; margin-bottom: 0.6em; }
.quote cite { font-style: normal; font-weight: 500; color: var(--text-soft); font-size: 14px; }

/* comparison table */
.table-wrap { overflow-x: auto; }
.compare { width: 100%; border-collapse: collapse; background: var(--bg-alt); border-radius: 10px; overflow: hidden; }
.compare th, .compare td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--border); font-size: 15px; }
.compare th { background: var(--primary); color: #fff; font-weight: 500; font-size: 14px; }
.compare tr:last-child td { border-bottom: none; }
.compare tr:nth-child(even) td { background: rgba(232,217,183,0.18); }

/* partner cta */
.partner {
  display: block; background: var(--bg-alt); color: var(--text);
  padding: 26px 22px; border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.18);
  transition: transform .2s, box-shadow .2s;
  position: relative;
}
.partner:hover { transform: translateY(-3px); box-shadow: 0 10px 22px rgba(0,0,0,0.18); text-decoration: none; }
.partner h3 { color: var(--primary-dark); margin-bottom: 0.4em; }
.partner p { color: var(--text-soft); font-size: 14px; margin-bottom: 0.4em; }
.partner .arrow {
  position: absolute; right: 22px; top: 24px;
  color: var(--accent); font-size: 1.4rem; font-weight: 700;
}

/* faq */
.faq details {
  background: var(--bg-alt); border: 1px solid var(--border);
  border-radius: 8px; padding: 16px 20px; margin-bottom: 10px;
}
.faq summary {
  cursor: pointer; font-weight: 500; font-size: 16px;
  color: var(--primary-dark); list-style: none;
  position: relative; padding-right: 28px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 0; top: 0;
  color: var(--accent); font-size: 1.4rem; font-weight: 300;
  transition: transform .2s;
}
.faq details[open] summary::after { content: "−"; }
.faq details p { margin-top: 12px; color: var(--text-soft); }

/* footer */
.footer {
  background: var(--primary-dark); color: rgba(255,255,255,0.78);
  padding: 40px 0 32px; font-size: 14px;
}
.footer .about { color: rgba(255,255,255,0.92); margin-bottom: 12px; }
.footer .disclaimer { color: rgba(255,255,255,0.55); font-size: 13px; margin-bottom: 16px; }
.footer .copy { color: rgba(255,255,255,0.5); }
.footer a { color: rgba(255,255,255,0.78); text-decoration: underline; }
.country-switch {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px 14px;
  padding-bottom: 18px; margin-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.14);
  font-size: 13px;
}
.country-switch__label { color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.04em; font-size: 12px; }
.country-switch a { color: rgba(255,255,255,0.85); text-decoration: none; padding: 4px 10px; border-radius: 999px; border: 1px solid rgba(255,255,255,0.18); }
.country-switch a:hover { background: rgba(255,255,255,0.08); }
.country-switch a.active { background: var(--accent); border-color: var(--accent); color: #fff; font-weight: 600; }
