:root {
  --color-primary: #634130;
  --color-secondary: #f3ebe0;
  --color-accent: #fbf4b0;
  --color-white: #ffffff;
  --color-text: #4b352b;
  --color-text-soft: #73584b;
  --color-border: rgba(99, 65, 48, 0.14);
  --color-shadow: rgba(99, 65, 48, 0.08);

  --font-heading: "Playfair Display", serif;
  --font-body: "Inter", sans-serif;

  --container: 1200px;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;

  --transition: 0.3s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: #ffffff;
  line-height: 1.6;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.section {
  padding: 6rem 0;
}

.eyebrow {
  margin: 0 0 1rem;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-primary);
  font-weight: 600;
}

h1,
h2,
h3 {
  margin: 0 0 1rem;
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.08;
  color: var(--color-primary);
}

h1 {
  font-size: clamp(2.8rem, 7vw, 5.8rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

h3 {
  font-size: 1.55rem;
}

p {
  margin: 0 0 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(99, 65, 48, 0.08);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
}

.brand-main {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  letter-spacing: 0.05em;
  color: var(--color-primary);
}

.brand-sub {
  font-size: 0.98rem;
  color: var(--color-text-soft);
  margin-top: 0.2rem;
  text-align: right;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav a,
.footer-nav a {
  position: relative;
  color: var(--color-primary);
  font-weight: 500;
}

.nav a::after,
.footer-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 0;
  height: 1px;
  background: var(--color-primary);
  transition: width var(--transition);
}

.nav a:hover::after,
.footer-nav a:hover::after {
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
}

.btn-primary:hover {
  background: #533526;
}

.btn-secondary {
  background: transparent;
  color: var(--color-primary);
  border-color: rgba(99, 65, 48, 0.22);
}

.btn-secondary:hover {
  background: rgba(99, 65, 48, 0.05);
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
}

.lang-btn {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--color-primary);
  min-width: auto;
  height: auto;
  padding: 0;
  border-radius: 0;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity var(--transition), color var(--transition);
}

.lang-btn:hover {
  background: transparent;
  opacity: 1;
}

.lang-btn.is-active {
  background: transparent;
  color: var(--color-primary);
  box-shadow: none;
  opacity: 1;
  font-weight: 600;
}

.lang-btn.is-active:hover {
  background: transparent;
}

.header-cta {
  min-height: 42px;
  padding: 0.8rem 1.5rem;
  white-space: nowrap;
}

.hero {
  position: relative;
  padding: 5rem 0 6rem;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(251, 244, 176, 0.35), transparent 35%),
    linear-gradient(180deg, rgba(243, 235, 224, 0.18), rgba(243, 235, 224, 0));
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 3rem;
}

.hero-copy {
  max-width: 640px;
}

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

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-visual img {
  width: 100%;
  height: 680px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px var(--color-shadow);
}

.hero-visual img,
.about-image img,
.gallery-item,
.gallery-item img {
  border-radius: 0 !important;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 3rem;
}

.section-heading p:last-child {
  color: var(--color-text-soft);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.service-card {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 30px var(--color-shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 38px rgba(99, 65, 48, 0.14);
}

.service-number {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--color-text-soft);
  font-size: 0.92rem;
  letter-spacing: 0.1em;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 3rem;
  align-items: center;
}

.about-image img {
  width: 100%;
  height: 700px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.about-copy p {
  color: var(--color-text-soft);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.stat {
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.46);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}

.stat strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  line-height: 1;
  color: var(--color-primary);
  margin-bottom: 0.4rem;
}

.stat span {
  color: var(--color-text-soft);
  font-size: 0.95rem;
}

.gallery-heading {
  margin-bottom: 2rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-auto-rows: 260px;
  gap: 1rem;
}

.gallery-item {
  overflow: hidden;
  border-radius: var(--radius-md);
  background: #e9ddd0;
}

.gallery-item.large {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.accent-block {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #d8c1bd;
  color: #fff;
  text-align: center;
  padding: 2rem;
}

.accent-content span {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.05;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: start;
}

.contact-copy p,
.contact-details {
  color: var(--color-text-soft);
}

.contact-details {
  padding: 0;
  margin: 1.5rem 0 0;
  list-style: none;
}

.contact-details li + li {
  margin-top: 0.5rem;
}

.contact-form {
  position: relative;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 30px var(--color-shadow);
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.2rem;
}

.form-group label {
  margin-bottom: 0.45rem;
  font-weight: 600;
  color: var(--color-primary);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(99, 65, 48, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-text);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(99, 65, 48, 0.4);
  box-shadow: 0 0 0 4px rgba(99, 65, 48, 0.08);
}

.btn-full {
  width: 100%;
}

.hp-field,
.hp-field * {
  position: absolute !important;
  left: -99999px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  min-width: 1px !important;
  min-height: 1px !important;
  max-width: 1px !important;
  max-height: 1px !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.form-alert {
  margin-bottom: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 16px;
  border: 1px solid var(--color-border);
  font-size: 0.96rem;
  line-height: 1.5;
}

.form-alert.is-success {
  background: rgba(92, 128, 97, 0.12);
  border-color: rgba(92, 128, 97, 0.25);
  color: #35533a;
}

.form-alert.is-error {
  background: rgba(152, 77, 77, 0.1);
  border-color: rgba(152, 77, 77, 0.22);
  color: #7d3f3f;
}

.site-footer {
  padding: 2rem 0;
  border-top: 1px solid rgba(99, 65, 48, 0.08);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.footer-text {
  margin-top: 0.8rem;
  color: var(--color-text-soft);
  max-width: 360px;
}

.footer-nav {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual img,
  .about-image img {
    height: 520px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item.large {
    grid-row: span 1;
  }
}

@media (max-width: 820px) {
  .site-header {
    position: static;
  }

  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 1rem 0;
  }

  .nav {
    flex-wrap: wrap;
    gap: 1rem 1.25rem;
  }

  .header-tools {
    width: 100%;
    justify-content: space-between;
  }

  .lang-switcher {
    order: 1;
  }

  .header-cta {
    order: 2;
  }

  .section {
    padding: 4.5rem 0;
  }

  .hero {
    padding-top: 3rem;
  }

  .hero-visual img,
  .about-image img {
    height: 420px;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .services-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}