/* ---------- Fonts ---------- */
@font-face {
  font-family: 'Fraunces';
  src: local('Fraunces');
  font-weight: 300 700;
  font-style: normal;
}

/* ---------- Tokens ---------- */
:root {
  --bg: #FBF7F2;
  --surface: #FFFFFF;
  --surface-alt: #F3ECE2;
  --text: #1C2321;
  --text-muted: #5B6360;
  --border: #E3D8C8;

  --accent: #2E8C82;
  --accent-strong: #21665F;
  --accent-tint: #E4F1EE;
  --coral: #E8846B;
  --coral-strong: #D5674C;

  --shadow-sm: 0 1px 2px rgba(28, 35, 33, 0.06);
  --shadow-md: 0 8px 24px rgba(28, 35, 33, 0.08);

  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Segoe UI', system-ui, -apple-system, sans-serif;

  color-scheme: light;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg: #171D1B;
    --surface: #1F2624;
    --surface-alt: #263029;
    --text: #F2EDE4;
    --text-muted: #A9B3AE;
    --border: #354039;

    --accent: #4CAE9F;
    --accent-strong: #6FC5B7;
    --accent-tint: #223330;
    --coral: #F0967C;
    --coral-strong: #F0967C;

    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 12px 28px rgba(0, 0, 0, 0.35);

    color-scheme: dark;
  }
}

:root[data-theme="dark"] {
  --bg: #171D1B;
  --surface: #1F2624;
  --surface-alt: #263029;
  --text: #F2EDE4;
  --text-muted: #A9B3AE;
  --border: #354039;

  --accent: #4CAE9F;
  --accent-strong: #6FC5B7;
  --accent-tint: #223330;
  --coral: #F0967C;
  --coral-strong: #F0967C;

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 12px 28px rgba(0, 0, 0, 0.35);

  color-scheme: dark;
}

/* ---------- Reset ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  text-wrap: balance;
  margin: 0;
  color: var(--text);
}

p { margin: 0; }

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--accent);
  color: #fff;
  padding: 0.75rem 1.25rem;
  z-index: 100;
  border-radius: 0 0 8px 0;
}
.skip-link:focus {
  left: 0;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-strong);
  margin: 0 0 0.5rem;
}

.section-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.3rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--coral);
  color: #fff;
}
.btn-primary:hover { background: var(--coral-strong); box-shadow: var(--shadow-md); }

.btn-outline {
  background: transparent;
  border-color: currentColor;
  color: var(--surface);
}

.btn-ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}
.btn-ghost:hover { background: var(--surface-alt); }

.btn-lg { padding: 0.9rem 1.75rem; font-size: 1rem; }
.btn-block { width: 100%; justify-content: center; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-right: auto;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--text);
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-sub {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.main-nav {
  display: flex;
  gap: 1.75rem;
}
.main-nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
}
.main-nav a:hover { color: var(--accent-strong); }

.header-actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  margin: 0 8px;
  background: var(--text);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.theme-toggle {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  transition: background-color 0.15s ease, border-color 0.15s ease;
}
.theme-toggle:hover {
  border-color: var(--accent);
  background: var(--accent-tint);
}
.theme-toggle svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}
.theme-toggle .icon-sun circle { fill: currentColor; stroke: none; }
.theme-toggle .icon-moon { fill: currentColor; stroke: none; }

.theme-toggle .icon-moon { display: none; }
:root[data-theme="dark"] .theme-toggle .icon-sun { display: none; }
:root[data-theme="dark"] .theme-toggle .icon-moon { display: block; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .theme-toggle .icon-sun { display: none; }
  :root:not([data-theme="light"]) .theme-toggle .icon-moon { display: block; }
}

.theme-toggle-mobile {
  display: flex;
  width: 100%;
  height: auto;
  padding: 0.65rem 0;
  border: none;
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  background: none;
  justify-content: flex-start;
  align-items: center;
  gap: 0.6rem;
  font-size: 1rem;
  font-weight: 500;
  font-family: var(--font-body);
}
.theme-toggle-mobile:hover { background: none; }

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0 1.5rem 1.25rem;
}
.mobile-nav a {
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  font-weight: 500;
}
.mobile-nav .btn { margin-top: 0.75rem; }
.mobile-nav.open { display: flex; }

@media (max-width: 860px) {
  .main-nav, .header-actions { display: none; }
  .nav-toggle { display: flex; }
}

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(180deg, var(--accent-tint), var(--bg) 65%);
}
.hero-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 4.5rem 1.5rem 5rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.2rem, 4.2vw, 3.4rem);
  margin: 0.75rem 0 1.25rem;
}

.hero-lede {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 46ch;
}

.hero-badge {
  display: inline-flex;
  margin: 1.25rem 0 0;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: var(--accent-tint);
  color: var(--accent-strong);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 2rem 0 1.75rem;
}
.hero-actions .btn-outline { color: var(--accent-strong); border-color: var(--accent); }
.hero-actions .btn-outline:hover { background: var(--accent-tint); }

.hero-rating {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}
.stars { color: var(--coral); letter-spacing: 1px; }

.hero-lang {
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.hero-visual-placeholder {
  aspect-ratio: 4 / 5;
  border-radius: 20px;
  background: var(--surface-alt);
  border: 1.5px dashed var(--border);
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--text-muted);
  gap: 0.35rem;
}
.hero-visual-placeholder span {
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--coral-strong);
  font-size: 0.85rem;
}

.hero-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
}

@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 340px; margin: 0 auto; }
}

/* ---------- Info strip ---------- */
.strip {
  background: var(--accent-strong);
  color: #fff;
}
.strip-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  text-align: center;
}
.strip-item { display: flex; flex-direction: column; gap: 0.15rem; }
.strip-item strong { font-family: var(--font-display); font-size: 1.05rem; }
.strip-item span { font-size: 0.85rem; opacity: 0.85; }
.strip-divider {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.25);
}
@media (max-width: 640px) {
  .strip-divider { display: none; }
}

/* ---------- Services ---------- */
.services h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  max-width: 30ch;
  margin-bottom: 2.5rem;
}

.service-category + .service-category {
  margin-top: 2.75rem;
}

.service-category-title {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-strong);
  margin: 0 0 1.1rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 1.25rem;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.service-card h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  margin: 0 0 0.5rem;
  color: var(--text);
}
.service-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin: 0;
}

/* ---------- Gallery ---------- */
.gallery { background: var(--surface-alt); }
.gallery h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  max-width: 30ch;
  margin-bottom: 2rem;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}
.gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
}

/* ---------- Testimonials ---------- */
.testimonials h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 2.5rem;
  max-width: 28ch;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.testimonial-card {
  margin: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}
.testimonial-card p {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 0.75rem 0 1rem;
  color: var(--text);
}
.testimonial-card cite {
  font-style: normal;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.testimonials-link {
  display: inline-block;
  margin-top: 2rem;
  font-weight: 600;
  color: var(--accent-strong);
}
.testimonials-link:hover { text-decoration: underline; }

/* ---------- Contact ---------- */
.contact { background: var(--surface-alt); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}
.contact h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 0.75rem; }
.contact-lede { color: var(--text-muted); max-width: 42ch; }

.contact-list {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.contact-list li {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--border);
}
.contact-list strong {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent-strong);
}
.contact-list a { text-decoration: underline; text-underline-offset: 3px; }

.contact-socials {
  display: flex;
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}
.contact-socials a {
  padding: 0.5rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  background: var(--surface);
}
.contact-socials a:hover { border-color: var(--accent); color: var(--accent-strong); }

.map-embed {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.map-embed iframe {
  width: 100%;
  height: 280px;
  border: 0;
  display: block;
}

.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.contact-form h3 {
  font-size: 1.3rem;
  margin-bottom: 0.25rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}
.form-field input,
.form-field select,
.form-field textarea {
  font: inherit;
  padding: 0.7rem 0.85rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
}
.form-field textarea { resize: vertical; }

.field-error {
  display: none;
  font-size: 0.8rem;
  color: var(--coral-strong);
}
.form-field.invalid input,
.form-field.invalid select {
  border-color: var(--coral);
}
.form-field.invalid .field-error {
  display: block;
}

.form-status {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
  min-height: 1.2em;
  color: var(--accent-strong);
}

.form-hint {
  margin: 0;
  font-size: 0.82rem;
  color: var(--text-muted);
}

@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--accent-strong);
  color: #fff;
}
.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 3rem 1.5rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
}
.footer-brand .brand-mark { box-shadow: 0 0 0 2px rgba(255,255,255,0.3); }
.footer-address { opacity: 0.85; font-size: 0.9rem; }
.footer-links {
  display: flex;
  gap: 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
}
.footer-links a:hover { text-decoration: underline; }
.footer-cofepris {
  opacity: 0.7;
  font-size: 0.75rem;
  margin-top: 0.75rem;
}
.footer-legal {
  opacity: 0.65;
  font-size: 0.8rem;
  margin-top: 1rem;
}
