:root {
  --ink: #241a16;
  --black: #0c0c0b;
  --bronze: #956d52;
  --bronze-light: #b79378;
  --cream: #f6f1ea;
  --paper: #faf8f4;
  --line: #d8c7b7;
  --muted: #6e6159;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

.site-header {
  min-height: 116px;
  padding: 20px clamp(28px, 6.5vw, 102px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
  background: var(--black);
}

.logo-link {
  display: inline-flex;
  flex: 0 0 auto;
}

.site-logo {
  height: 56px;
  width: auto;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(34px, 5vw, 76px);
}

.main-nav a {
  position: relative;
  padding: 10px 0;
  color: #eadfd6;
  font-size: 18px;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: .01em;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a.active {
  color: var(--bronze-light);
}

.main-nav a.active::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--bronze-light);
}

.photo-hero {
  overflow: hidden;
  background: #4b392c;
}

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

.home-hero {
  height: 440px;
}

.services-hero {
  height: 312px;
}

.about-hero {
  height: 355px;
}

.title-hero {
  position: relative;
  height: 340px;
}

.title-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(29, 20, 15, .13);
}

.hero-title {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #fff;
  text-align: center;
}

.hero-title h1 {
  margin: 0;
  font-size: clamp(38px, 4.8vw, 48px);
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: .015em;
}

.faq-hero .hero-title img {
  width: 125px;
  height: auto;
  margin-top: 20px;
}

.content-section {
  background:
    radial-gradient(circle at 50% 20%, rgba(255,255,255,.94), rgba(248,244,238,.94)),
    var(--cream);
}

.home-intro {
  min-height: 436px;
  padding: 28px 24px 34px;
  text-align: center;
}

.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ornament span {
  height: 1px;
  background: #c5aa96;
}

.ornament-wide {
  max-width: 480px;
  margin: 0 auto 20px;
}

.ornament-wide span {
  flex: 1;
}

.ornament-wide img {
  width: 45px;
  height: 26px;
  margin: 0 10px;
  object-fit: contain;
}

.home-intro h1 {
  margin: 0 auto 20px;
  max-width: 1120px;
  font-size: clamp(29px, 3vw, 40px);
  line-height: 1.3;
  font-weight: 400;
  letter-spacing: .025em;
}

.short-rule {
  width: min(610px, 72%);
  height: 1px;
  margin: 0 auto 31px;
  background: #99806e;
}

.home-intro p {
  max-width: 760px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.62;
}

.services-section {
  padding: 12px 7.5% 24px;
}

.section-heading {
  text-align: center;
}

.section-heading h1,
.section-heading h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.25;
  font-weight: 400;
  letter-spacing: .025em;
}

.heading-ornament {
  width: 420px;
  max-width: 72%;
  margin: 2px auto 10px;
}

.heading-ornament span {
  flex: 1;
}

.heading-ornament img {
  width: 35px;
  height: 20px;
  margin: 0 9px;
  object-fit: contain;
}

.service-list {
  max-width: 1270px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.service-list li {
  display: grid;
  grid-template-columns: 72px 72px 1fr;
  align-items: center;
  gap: 22px;
  min-height: 78px;
  border-bottom: 1px solid var(--line);
}

.service-list li:last-child {
  border-bottom: 0;
}

.service-icon {
  width: 68px;
  height: 68px;
  overflow: hidden;
  border-radius: 50%;
}

.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-number {
  color: #89664d;
  font-size: 44px;
  line-height: 1;
}

.service-list p {
  margin: 0;
  font-size: 17px;
  line-height: 1.45;
}

.service-list strong {
  font-size: 20px;
  font-weight: 700;
}

.about-section {
  position: relative;
  min-height: 525px;
  padding: 28px 19% 34px 25%;
  overflow: hidden;
}

.botanical-art {
  position: absolute;
  left: 3.5%;
  bottom: 0;
  width: 18%;
  max-height: 95%;
  object-fit: contain;
  object-position: bottom left;
  opacity: .48;
}

.about-copy {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.about-copy p {
  margin: 0;
  padding: 0 0 5px;
  border-bottom: 1px solid #c6aa92;
  font-size: 16px;
  line-height: 1.65;
}

.about-copy p + p {
  padding-top: 7px;
}

.about-copy p:last-child {
  border-bottom: 0;
}

.faq-section {
  padding: 18px 15.5% 46px;
}

.faq-section .section-heading h2 {
  font-size: clamp(30px, 3.5vw, 40px);
}

.faq-heading-mark {
  width: 320px;
  max-width: 70%;
  margin: 4px auto 16px;
}

.faq-heading-mark img {
  width: 100%;
  height: 24px;
  object-fit: contain;
}

.faq-list {
  max-width: 1090px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 7px;
  overflow: hidden;
}

.faq-list details {
  position: relative;
  border-bottom: 1px solid #ded2c7;
  background: rgba(255, 255, 255, .12);
}

.faq-list details:last-child {
  border-bottom: 0;
}

.faq-list summary {
  min-height: 52px;
  padding: 16px 58px 0 86px;
  display: grid;
  grid-template-columns: 1fr 28px;
  align-items: start;
  gap: 15px;
  cursor: pointer;
  list-style: none;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-plus {
  position: absolute;
  left: 24px;
  top: 28px;
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.faq-chevron {
  width: 28px;
  height: 20px;
  margin-top: 5px;
  object-fit: contain;
}

.faq-list details[open] .faq-chevron {
  transform: rotate(180deg);
}

.faq-list details p {
  max-width: 830px;
  margin: 0;
  padding: 0 55px 12px 86px;
  font-size: 14px;
  line-height: 1.4;
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 0;
  padding: 42px 9.4% 44px;
}

.contact-details {
  padding: 5px 62px 0 0;
  border-right: 1px solid var(--line);
}

.contact-intro,
.form-intro {
  margin: 0 0 56px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.45;
}

.contact-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: start;
  gap: 22px;
  margin: 0 0 24px;
  font-family: Arial, Helvetica, sans-serif;
}

.contact-item img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.contact-item p {
  margin: 2px 0 0;
  font-size: 17px;
  line-height: 1.45;
}

.contact-item a {
  text-decoration: none;
}

.form-column {
  padding-left: 82px;
}

.form-intro {
  margin-bottom: 22px;
}

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

.contact-form label {
  margin: 0 0 3px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
}

.contact-form label span {
  color: var(--muted);
  font-size: 12px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-bottom: 10px;
  padding: 8px 10px;
  border: 1px solid #a89280;
  border-radius: 0;
  background: rgba(255,255,255,.22);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
}

.contact-form input {
  height: 40px;
}

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

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(149,109,82,.3);
  outline-offset: 1px;
}

.cf-turnstile {
  margin: 4px 0 14px;
  max-width: 100%;
  overflow: hidden;
}

.contact-form button {
  align-self: flex-start;
  min-width: 267px;
  padding: 15px 25px;
  border: 1px solid #1a1512;
  background: #1a1512;
  color: #fff;
  cursor: pointer;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.contact-form button:hover,
.contact-form button:focus-visible {
  background: #3b2b22;
}

.contact-form button:disabled {
  cursor: wait;
  opacity: .65;
}

.form-privacy {
  max-width: 550px;
  margin: 12px 0 0;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  line-height: 1.5;
}

.form-status {
  min-height: 25px;
  margin: 10px 0 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
}

.form-status.success {
  color: #35613e;
}

.form-status.error {
  color: #8d3027;
}

.legal-main {
  padding: 58px 24px 74px;
  background: var(--paper);
}

.legal-document {
  max-width: 850px;
  margin: 0 auto;
}

.legal-document h1 {
  margin: 0;
  font-size: 40px;
  line-height: 1.2;
  font-weight: 400;
}

.last-updated {
  margin: 8px 0 42px;
  color: var(--muted);
}

.legal-document section {
  margin-top: 36px;
}

.legal-document h2 {
  margin: 0 0 12px;
  font-size: 25px;
  line-height: 1.3;
  font-weight: 400;
}

.legal-document p,
.legal-document li {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.7;
}

.legal-document ul {
  padding-left: 24px;
}

.site-footer {
  padding: 24px clamp(24px, 6vw, 90px);
  border-top: 1px solid #2c2622;
  background: var(--black);
  color: #d9cec6;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
}

.footer-inner {
  max-width: 1360px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer-inner p {
  margin: 0;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-footer a {
  color: #d9cec6;
}

.calmyx-credit {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  white-space: nowrap;
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner {
  position: fixed;
  z-index: 1000;
  right: 20px;
  bottom: 20px;
  width: min(430px, calc(100% - 40px));
  padding: 18px;
  border: 1px solid #8d7564;
  box-shadow: 0 10px 35px rgba(0,0,0,.24);
  background: #171310;
  color: #f4ede8;
  font-family: Arial, Helvetica, sans-serif;
}

.cookie-banner p {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.5;
}

.cookie-banner a {
  color: #d4ae91;
}

.cookie-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.cookie-actions button {
  min-width: 96px;
  padding: 9px 14px;
  border: 1px solid #b28a70;
  cursor: pointer;
  font-size: 14px;
}

.cookie-decline {
  background: transparent;
  color: #f4ede8;
}

.cookie-accept {
  background: #a87e62;
  color: #fff;
}

@media (max-width: 900px) {
  .site-header {
    min-height: auto;
    padding: 18px 24px;
    flex-direction: column;
    gap: 12px;
  }

  .site-logo {
    height: 52px;
  }

  .main-nav {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px 25px;
  }

  .main-nav a {
    font-size: 16px;
  }

  .home-hero,
  .services-hero,
  .about-hero,
  .title-hero {
    height: 340px;
  }

  .about-section {
    padding: 32px 8% 40px 25%;
  }

  .botanical-art {
    width: 21%;
  }

  .faq-section {
    padding-right: 5%;
    padding-left: 5%;
  }

  .contact-section {
    padding: 38px 6%;
  }

  .contact-details {
    padding-right: 35px;
  }

  .form-column {
    padding-left: 35px;
  }
}

@media (max-width: 650px) {
  .site-header {
    padding: 16px 15px;
  }

  .site-logo {
    height: 50px;
  }

  .main-nav {
    gap: 4px 18px;
  }

  .main-nav a {
    font-size: 15px;
  }

  .photo-hero {
    height: 270px;
  }

  .home-hero img {
    object-position: 47% center;
  }

  .services-hero img {
    object-position: center;
  }

  .about-hero img {
    object-position: 48% center;
  }

  .title-hero {
    height: 280px;
  }

  .hero-title h1 {
    font-size: 40px;
  }

  .home-intro {
    padding: 28px 20px 42px;
  }

  .home-intro h1 {
    font-size: 30px;
    line-height: 1.3;
  }

  .home-intro p {
    font-size: 16px;
    line-height: 1.65;
  }

  .desktop-break {
    display: none;
  }

  .short-rule {
    width: 85%;
    margin-bottom: 24px;
  }

  .services-section {
    padding: 22px 20px 35px;
  }

  .section-heading h1,
  .section-heading h2 {
    font-size: 32px;
  }

  .service-list li {
    grid-template-columns: 56px 42px 1fr;
    gap: 10px;
    padding: 16px 0;
    align-items: start;
  }

  .service-icon {
    width: 54px;
    height: 54px;
  }

  .service-number {
    padding-top: 7px;
    font-size: 34px;
  }

  .service-list p {
    font-size: 15px;
    line-height: 1.55;
  }

  .service-list strong {
    font-size: 18px;
  }

  .about-section {
    padding: 34px 22px 42px;
  }

  .botanical-art {
    display: none;
  }

  .about-copy p {
    padding-bottom: 14px;
    font-size: 16px;
  }

  .about-copy p + p {
    padding-top: 14px;
  }

  .faq-section {
    padding: 25px 14px 42px;
  }

  .faq-list summary {
    min-height: 66px;
    padding: 16px 44px 8px 60px;
    grid-template-columns: 1fr 20px;
    font-size: 16px;
  }

  .faq-plus {
    left: 14px;
    top: 17px;
    width: 32px;
    height: 32px;
  }

  .faq-chevron {
    width: 20px;
    height: 16px;
  }

  .faq-list details p {
    padding: 0 20px 16px 60px;
    font-size: 14px;
  }

  .contact-section {
    grid-template-columns: 1fr;
    padding: 34px 20px 44px;
  }

  .contact-details {
    padding: 0 0 28px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .contact-intro {
    margin-bottom: 36px;
  }

  .form-column {
    padding: 30px 0 0;
  }

  .form-intro {
    margin-bottom: 20px;
  }

  .contact-form button {
    width: 100%;
    min-width: 0;
  }

  .legal-main {
    padding: 38px 20px 55px;
  }

  .legal-document h1 {
    font-size: 34px;
  }

  .legal-document h2 {
    font-size: 22px;
  }

  .footer-inner,
  .footer-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .cookie-banner {
    right: 12px;
    bottom: 12px;
    width: calc(100% - 24px);
  }
}