:root {
  --sage: #7c9c83;
  --sage-dark: #5f7d66;
  --olive: #c7c944;
  --bg: #f4f4f2;
  --paper: #ffffff;
  --text: #1a1a1a;
  --muted: #9a9a9a;
  --font-heading: 'Baloo 2', sans-serif;
  --font-tagline: 'Oswald', sans-serif;
  --font-body: 'Jost', sans-serif;
  --max-width: 1000px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
}

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

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Nav */
nav.site-nav {
  display: flex;
  justify-content: center;
  gap: 48px;
  padding: 22px 24px;
  flex-wrap: wrap;
}

nav.site-nav a {
  font-size: 15px;
  letter-spacing: 0.5px;
  color: #444;
  padding-bottom: 4px;
}

nav.site-nav a.active {
  color: var(--muted);
  border-bottom: 1px solid var(--muted);
}

nav.site-nav a:hover { color: var(--sage-dark); }

main {
  background: var(--paper);
  max-width: 1000px;
  margin: 0 auto;
  padding: 48px 40px 80px;
}

/* Hero */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  padding-top: 20px;
}

.hero .signature {
  width: 260px;
  max-width: 40vw;
}

.hero .heading-block h1 {
  font-family: var(--font-heading);
  color: var(--sage);
  font-size: 34px;
  letter-spacing: 6px;
  margin: 0;
  font-weight: 700;
}

.hero .heading-block .byline {
  font-size: 17px;
  letter-spacing: 3px;
  color: #c9c9c9;
  margin-top: 6px;
}

.lang-badge {
  position: absolute;
  top: -10px;
  right: 0;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: var(--olive);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  letter-spacing: 2px;
  color: #3a3a1a;
}

.cta-row {
  display: flex;
  gap: 20px;
  margin: 56px 0 40px;
  flex-wrap: wrap;
}

.btn-outline {
  border: 1px solid var(--sage);
  color: var(--sage);
  padding: 16px 28px;
  font-size: 14px;
  letter-spacing: 2px;
  text-align: center;
  flex: 1;
  min-width: 200px;
}

.btn-outline:hover { background: var(--sage); color: #fff; }

.tagline {
  font-family: var(--font-tagline);
  font-weight: 200;
  font-size: 38px;
  text-align: center;
  margin: 60px 0;
}

/* Gallery grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
  margin: 40px 0;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1 / 1;
}

.gallery-grid a:nth-child(1) { grid-column: span 2; }
.gallery-grid a:nth-child(2) { grid-column: span 2; }
.gallery-grid a:nth-child(3) { grid-column: span 4; grid-row: span 2; }
.gallery-grid a:nth-child(4) { grid-column: span 2; grid-row: span 2; }
.gallery-grid a:nth-child(5) { grid-column: span 3; }
.gallery-grid a:nth-child(6) { grid-column: span 3; }
.gallery-grid a:nth-child(7) { grid-column: span 3; }
.gallery-grid a:nth-child(8) { grid-column: span 3; }

.contact-circle-wrap {
  display: flex;
  justify-content: center;
  margin: 60px 0;
}

.contact-circle {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--sage);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 500;
}

.contact-circle:hover { background: var(--sage-dark); }

footer {
  max-width: 1000px;
  margin: 0 auto;
  padding: 32px 40px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--muted);
  font-size: 14px;
}

footer .social { display: flex; align-items: center; gap: 10px; }
footer .social img { width: 28px; height: 28px; opacity: 0.6; }
footer a { text-decoration: underline; }
footer .legal { display: flex; flex-direction: column; gap: 6px; }

/* Content pages */
.page-title {
  font-family: var(--font-tagline);
  font-weight: 300;
  font-size: 26px;
  line-height: 1.5;
  margin-bottom: 48px;
}

.section-block {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.section-block img {
  width: 320px;
  max-width: 100%;
  border-radius: 2px;
}

.section-block .text { flex: 1; min-width: 280px; }

.section-block h2 {
  color: var(--sage);
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 22px;
}

.section-block .links {
  display: flex;
  gap: 24px;
  margin-top: 16px;
  font-size: 14px;
}

.section-block .links a { color: var(--sage); text-decoration: underline; }

.testimonial {
  border-top: 1px solid #eee;
  padding-top: 32px;
  margin-top: 40px;
  font-style: italic;
  color: #555;
  line-height: 1.6;
}

.testimonial .author {
  margin-top: 12px;
  font-style: normal;
  font-weight: 500;
  color: var(--text);
}

.bullet-list { margin: 16px 0; padding-left: 20px; }
.bullet-list li { margin-bottom: 6px; }

.about-block {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.about-block img { width: 280px; border-radius: 2px; }
.about-block .text { flex: 1; min-width: 280px; line-height: 1.7; }

.about-block .name {
  margin-top: 32px;
  font-weight: 500;
  letter-spacing: 1px;
}

.about-block .title-line { color: var(--muted); margin-top: 4px; }

/* Contact form */
form.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 32px;
  max-width: 640px;
}

form.contact-form .full { grid-column: 1 / -1; }

form.contact-form input,
form.contact-form textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #ccc;
  background: transparent;
  padding: 8px 4px;
  font-family: var(--font-body);
  font-size: 15px;
}

form.contact-form textarea { resize: vertical; min-height: 100px; }

form.contact-form button {
  grid-column: 1 / -1;
  justify-self: center;
  background: none;
  border: none;
  color: var(--sage);
  letter-spacing: 2px;
  font-size: 15px;
  cursor: pointer;
  padding: 12px 40px;
}

.contact-lang { color: var(--sage); margin: 20px 0 40px; }
.contact-lang p { margin: 4px 0; }

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
}

.contact-info .row { display: flex; align-items: center; gap: 12px; }
.contact-info .row span.icon { font-size: 20px; }

.map-embed {
  margin-top: 32px;
  border: 0;
  width: 100%;
  max-width: 500px;
  height: 260px;
}

@media (max-width: 700px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid a:nth-child(n) { grid-column: span 1 !important; grid-row: span 1 !important; }
  .lang-badge { position: static; margin-bottom: 20px; }
  .hero { flex-direction: column; }
  form.contact-form { grid-template-columns: 1fr; }
}
