body {
  color: #2a3c34;
}

#main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(26, 40, 32, 0.08);
  border-bottom: 1px solid transparent;
  transition: background-color 0.22s ease, border-color 0.22s ease;
  padding: 0 40px;
}

#main-nav.scrolled {
  background: rgba(253, 251, 248, 0.97);
  border-bottom-color: #90c4b4;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  flex: 0 0 118px;
  width: 118px;
  height: 48px;
  overflow: hidden;
}

.nav-logo img {
  width: 118px;
  height: 48px;
  max-width: 118px;
  object-fit: contain;
  display: block;
}

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}

.nav-link {
  font-family: "Jost", sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fdfbf8;
  text-decoration: none;
  opacity: 0.92;
  transition: opacity 0.2s ease, color 0.2s ease;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.22);
}

#main-nav.scrolled .nav-link {
  color: #1a2820;
  text-shadow: none;
  opacity: 0.76;
}

.nav-link:hover {
  opacity: 1 !important;
}

.nav-btn {
  font-family: "Jost", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fdfbf8;
  background: #4a8070;
  padding: 10px 22px;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.nav-btn:hover {
  opacity: 0.85;
}

#hero {
  min-height: 100vh;
  display: flex;
  position: relative;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  background: #1a2820;
}

.hero-media {
  position: absolute;
  inset: 0;
  display: block;
}

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

.hero-overlay-flat {
  position: absolute;
  inset: 0;
  background: rgba(15, 26, 17, 0.52);
}

.hero-overlay-radial {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(10, 20, 12, 0.38) 0%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 40px 80px;
  text-align: center;
  max-width: 720px;
}

.hero-label {
  font-family: "Jost", sans-serif;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #c89050;
  margin-bottom: 24px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.28);
  opacity: 0.95;
}

.hero-h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(56px, 7vw, 104px);
  font-weight: 300;
  line-height: 1.05;
  color: #fdfbf8;
  margin-bottom: 16px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-desc {
  font-family: "Jost", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(250, 247, 245, 0.95);
  max-width: 460px;
  margin-top: 16px;
  margin-bottom: 40px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.28);
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.btn-primary {
  font-family: "Jost", sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: #4a8070;
  color: #fdfbf8;
  padding: 14px 36px;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.btn-primary:hover {
  opacity: 0.85;
}

.btn-ghost {
  font-family: "Jost", sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fdfbf8;
  text-decoration: none;
  border-bottom: 1px solid rgba(250, 247, 245, 0.6);
  padding-bottom: 2px;
  transition: opacity 0.2s ease;
}

.btn-ghost:hover {
  opacity: 0.6;
}

.hero-byline {
  position: absolute;
  bottom: 40px;
  right: 48px;
  font-family: "Jost", sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #c89050;
  opacity: 0.9;
  z-index: 1;
}

.ornament {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  margin: 8px 0;
}

.ornament-line {
  display: block;
  width: 40px;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
}

#about {
  padding: 140px 40px;
  background: #c8ded8;
}

.about-inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.section-label {
  font-family: "Jost", sans-serif;
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #c89050;
  margin-bottom: 16px;
  display: block;
}

.section-h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 8px;
  color: #1a2820;
}

.body-text {
  font-family: "Jost", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.9;
  color: #2a3c34;
}

.about-quote {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(22px, 2.4vw, 30px);
  font-style: italic;
  font-weight: 300;
  color: #1a2820;
  line-height: 1.5;
  margin-bottom: 12px;
}

.about-attribution {
  font-family: "Jost", sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #c89050;
  margin-bottom: 48px;
}

.link-accent {
  font-family: "Jost", sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #4a8070;
  text-decoration: none;
  border-bottom: 1px solid #4a8070;
  padding-bottom: 2px;
}

.link-accent:hover {
  opacity: 0.75;
}

#services {
  padding: 120px 40px;
  background: #f2f7f5;
}

.services-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 72px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.service-card {
  padding: 48px 40px;
  transition: background-color 0.2s ease;
  cursor: default;
}

.service-card:nth-child(odd) {
  background: #fdfbf8;
}

.service-card:nth-child(even) {
  background: #c8ded8;
}

.service-card:hover {
  background: #d8ede8;
}

.service-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 14px;
  color: #1a2820;
}

.service-card p {
  font-family: "Jost", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  color: #2a3c34;
}

.flower-icon {
  display: block;
  margin-bottom: 16px;
}

#gallery {
  padding: 120px 40px;
  background: #1a2820;
}

.gallery-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 4px;
}

.gallery-item-1 {
  grid-column: 1 / 3;
  grid-row: 1;
}

.gallery-item-2 {
  grid-column: 3 / 4;
  grid-row: 1;
}

.gallery-item-3 {
  grid-column: 1 / 2;
  grid-row: 2;
}

.gallery-item-4 {
  grid-column: 2 / 4;
  grid-row: 2;
}

.gallery-grid img {
  display: block;
  width: 100%;
  object-fit: cover;
}

.gallery-cta {
  text-align: center;
  margin-top: 48px;
}

.btn-outline-white {
  font-family: "Jost", sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fdfbf8;
  border: 1px solid rgba(250, 247, 245, 0.3);
  padding: 14px 36px;
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease;
  display: inline-block;
}

.btn-outline-white:hover {
  background: #4a8070;
  border-color: #4a8070;
}

#testimonials {
  padding: 120px 40px;
  background: #c8ded8;
}

.testimonials-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-block {
  margin-top: 60px;
  min-height: 160px;
}

.testimonial-text {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  color: #1a2820;
  margin-bottom: 32px;
}

.testimonial-author {
  font-family: "Jost", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #4a8070;
}

.testimonial-role {
  font-family: "Jost", sans-serif;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: #2a3c34;
  margin-top: 4px;
  opacity: 0.7;
}

.testimonial-dots {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 40px;
}

.dot {
  height: 8px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  background: #90c4b4;
  width: 8px;
  transition: width 0.24s ease, background-color 0.24s ease;
}

.dot.active {
  background: #4a8070;
  width: 28px;
}

#contact {
  padding: 120px 40px;
  background: #f2f7f5;
}

.contact-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: center;
}

.contact-label {
  font-family: "Jost", sans-serif;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #c89050;
  min-width: 70px;
}

.contact-value {
  font-family: "Jost", sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #2a3c34;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #90c4b4;
  background: transparent;
  font-family: "Jost", sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #1a2820;
  outline: none;
  transition: border-color 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #4a8070;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form select {
  color: #2a3c34;
}

.turnstile-slot {
  display: none;
}

.contact-form[data-turnstile-enabled="true"] .turnstile-slot {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
  color: rgba(42, 60, 52, 0.72);
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
}

.contact-form[data-turnstile-enabled="true"] .turnstile-slot.is-mounted {
  min-height: 0;
  padding: 0;
}

.turnstile-slot.is-error {
  color: #8a2e2e;
}

.btn-submit {
  background: #4a8070;
  color: #fdfbf8;
  border: none;
  padding: 16px;
  font-family: "Jost", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.2s ease;
  width: 100%;
}

.btn-submit:hover {
  opacity: 0.85;
}

footer {
  background: #1a2820;
  padding: 60px 40px;
  text-align: center;
}

.footer-links {
  display: flex;
  gap: 32px;
  justify-content: center;
  margin-bottom: 32px;
}

.footer-link {
  font-family: "Jost", sans-serif;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(250, 247, 245, 0.7);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: rgba(250, 247, 245, 1);
}

.footer-copy {
  font-family: "Jost", sans-serif;
  font-size: 11px;
  font-weight: 300;
  color: rgba(250, 247, 245, 0.6);
  margin-top: 24px;
  letter-spacing: 0.05em;
}

.heading-white {
  color: #fdfbf8;
}

.heading-white em {
  color: #4a8070;
}
