:root {
  --navy: #2a3f54;
  --navy-dark: #21303f;
  --text-muted: #4a5d70;
  --border: #d8dfe6;
  --bg-soft: #f4f6f8;
  --font-display: 'Bodoni Moda', 'Times New Roman', serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-body: 'Arimo', 'Helvetica Neue', Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

.container {
  width: min(100% - 3rem, 1080px);
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--navy);
  color: #ffffff;
  padding: 0.6rem 1rem;
  text-decoration: none;
}

.skip-link:focus {
  left: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
}

.brand {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  color: var(--navy);
}

.site-nav {
  display: flex;
  gap: 1.6rem;
}

.site-nav a {
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
}

.site-nav a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(280px, 42%) 1fr;
  min-height: calc(100vh - 62px);
  min-height: calc(100svh - 62px);
}

.hero-photo {
  overflow: hidden;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1.4rem;
  padding: 3rem 2rem;
}

.hero-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3rem, 9vw, 7.5rem);
  line-height: 0.95;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0;
  color: var(--navy);
}

.hero-subtitle {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 3vw, 2rem);
  margin: 0;
  color: var(--navy);
}

.hero-contact {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--navy);
  text-underline-offset: 4px;
}

.hero-contact:hover {
  color: #53677a;
}

.section {
  padding: 6rem 1.5rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--navy);
  text-align: center;
  margin: 0 0 2.5rem;
}

.section-title::after {
  content: "";
  display: block;
  width: 64px;
  height: 2px;
  background: var(--navy);
  margin: 1rem auto 0;
}

.about-text {
  max-width: 780px;
  margin: 0 auto;
  font-size: 1.125rem;
  color: var(--text-muted);
}

.about-text p {
  margin: 0 0 1.4rem;
}

.section-alt {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
}

.contact-container {
  max-width: 720px;
}

.contact-intro {
  text-align: center;
  margin: 0 0 2.5rem;
  color: var(--text-muted);
}

.contact-form {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2.2rem 2rem;
  box-shadow: 0 14px 40px rgba(42, 63, 84, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.field label {
  display: block;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 0.45rem;
  color: var(--navy);
}

.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  font: inherit;
  color: var(--navy);
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #ffffff;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(42, 63, 84, 0.12);
}

.field textarea {
  resize: vertical;
  min-height: 130px;
}

.honey {
  position: absolute;
  left: -9999px;
  width: 0;
  height: 0;
  opacity: 0;
  overflow: hidden;
}

.captcha-question {
  font-weight: 400;
  color: var(--text-muted);
}

.captcha-row {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.captcha-row input {
  flex: 0 0 160px;
}

.btn-link {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  font-weight: 700;
  color: var(--navy);
  text-decoration: underline;
  cursor: pointer;
}

.btn {
  background: var(--navy);
  color: #ffffff;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 0.95rem 1.5rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  width: 100%;
  transition: background 0.2s;
}

.btn:hover {
  background: var(--navy-dark);
}

.btn:disabled {
  opacity: 0.6;
  cursor: default;
}

.form-status {
  margin: 0;
  font-size: 0.95rem;
  text-align: center;
  min-height: 1.2em;
}

.form-status.success {
  color: #1e7d41;
}

.form-status.error {
  color: #b3261e;
}

.site-footer {
  text-align: center;
  padding: 2.5rem 1rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  font-size: 0.9rem;
}

.site-footer p {
  margin: 0.2rem 0;
}

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

  .hero-photo {
    height: 42vh;
  }

  .hero-photo img {
    height: 100%;
  }

  .hero-content {
    padding: 3rem 1.5rem;
  }

  .section {
    padding: 4rem 1.25rem;
  }

  .contact-form {
    padding: 1.8rem 1.25rem;
  }
}