/* ====== Global styles ====== */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: #3a3a3a;
  background-color: #f7f4ef;
  line-height: 1.6;
}

/* Typography */

h1, h2, h3, h4 {
  font-family: "Georgia", "Times New Roman", serif;
  font-weight: 400;
  color: #222222;
  letter-spacing: 0.04em;
}

p {
  margin-bottom: 0.85rem;
}

a {
  color: #222222;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Layout */

.container {
  max-width: 1040px;
  margin: 0 auto;
  padding: 1.5rem;
}

.section {
  padding: 3rem 0;
  border-bottom: 1px solid #e0dbd0;
}

/* Header & navigation */

.site-header {
  border-bottom: 1px solid #e0dbd0;
  background-color: #f7f4ef;
  position: sticky;
  top: 0;
  z-index: 20;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  max-width: 1040px;
  margin: 0 auto;
}

.brand {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 1.2rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-tagline {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #777777;
  margin-top: 0.25rem;
}

/* Navigation */

.nav-main {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  font-size: 0.9rem;
}

.nav-main a {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
}

.nav-main a.active {
  text-decoration: underline;
}

/* Language switch */

.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 1.5rem;
  padding-left: 1.5rem;
  border-left: 1px solid #ddd3c0;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.lang-switch span {
  color: #999;
}

.lang-switch a {
  color: #555;
}

.lang-switch a.current-lang {
  color: #222;
  font-weight: 600;
}

/* Hero section */

.hero {
  padding: 4rem 0 3rem 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 3rem;
}

.hero-title {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: #555555;
}

.hero-text p {
  max-width: 34rem;
}

.hero-side {
  border-left: 1px solid #e0dbd0;
  padding-left: 2rem;
  font-size: 0.9rem;
}

.hero-label {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  color: #999999;
  margin-bottom: 0.75rem;
}

/* Cards / blocks */

.section-title {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}

.section-intro {
  max-width: 34rem;
  margin-bottom: 2rem;
  color: #555555;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;
}

.card {
  background-color: #fdfbf7;
  border: 1px solid #e0dbd0;
  padding: 1.5rem;
}

.card-title {
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.card-subtitle {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #999999;
  margin-bottom: 0.75rem;
}

.card p {
  font-size: 0.9rem;
}

/* Lists */

.list-clean {
  list-style: none;
  padding-left: 0;
}

.list-clean li {
  margin-bottom: 0.35rem;
  font-size: 0.9rem;
}

/* Call to action button */

.button {
  display: inline-block;
  padding: 0.65rem 1.8rem;
  border: 1px solid #222222;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  background-color: transparent;
  border-radius: 999px;
}

.button:hover {
  background-color: #222222;
  color: #f7f4ef;
  text-decoration: none;
}

/* Pricing */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;
}

.price-card {
  background-color: #fdfbf7;
  border: 1px solid #e0dbd0;
  padding: 1.75rem 1.5rem;
}

.price-name {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #999999;
  margin-bottom: 0.5rem;
}

.price-title {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.price-amount {
  font-size: 1rem;
  margin-bottom: 0.75rem;
  color: #444444;
}

.price-note {
  font-size: 0.8rem;
  color: #777777;
  margin-top: 0.75rem;
}

.list-dash {
  list-style: none;
  padding-left: 0;
}

.list-dash li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 0.35rem;
  font-size: 0.9rem;
}

.list-dash li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: #999999;
}

/* About */

.two-column {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 2.5rem;
}

.muted {
  color: #777777;
  font-size: 0.9rem;
}

/* Contact */

.contact-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 2.5rem;
}

.contact-details p {
  font-size: 0.9rem;
}

.contact-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #999999;
  margin-bottom: 0.25rem;
}

/* Simple form (non-functional without backend) */

form {
  display: grid;
  gap: 0.9rem;
}

label {
  font-size: 0.85rem;
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  border: 1px solid #ddd3c0;
  padding: 0.55rem 0.65rem;
  font-family: inherit;
  font-size: 0.9rem;
  background-color: #fdfbf7;
}

textarea {
  min-height: 140px;
}

input[type="submit"] {
  cursor: pointer;
}

/* Footer */

.site-footer {
  border-top: 1px solid #e0dbd0;
  padding: 1.5rem 0;
  font-size: 0.8rem;
  color: #777777;
}

.footer-inner {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Responsive */

@media (max-width: 800px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .nav-main {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .hero-grid,
  .two-column,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-side {
    border-left: none;
    border-top: 1px solid #e0dbd0;
    padding-left: 0;
    padding-top: 1.5rem;
  }

  .cards,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .lang-switch {
    margin-left: 0;
    padding-left: 0;
    border-left: none;
  }
}.about-photo {
  width: 100%;
  max-width: 260px;
  border-radius: 6px;
  display: block;
  margin-bottom: 1rem;
}

.about-photo-container {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 1.5rem;
}
.site-logo {
  max-height: 100px;
  margin-right: 1rem;
  vertical-align: middle;
}