@font-face {
  font-family:Manrope;
  src:url('assets/fonts/manrope-latin.woff2') format('woff2');
  font-style:normal;
  font-weight:400 800;
  font-display:swap;
}

@font-face {
  font-family:Manrope;
  src:url('assets/fonts/manrope-latin-ext.woff2') format('woff2');
  font-style:normal;
  font-weight:400 800;
  font-display:swap;
  unicode-range:U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+0304,U+0308,U+0329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF;
}

:root {
  --paper:#faf8f3;
  --cream:#f1ece3;
  --sand:#e9e0d3;
  --ink:#393c31;
  --muted:#6f7166;
  --brown:#806047;
  --brown-dark:#634832;
  --line:#dedbd0;
  --serif:Georgia,'Times New Roman',serif;
  --sans:Manrope,Arial,sans-serif;
  --radius:8px;
}

*,*::before,*::after {
  box-sizing:border-box;
}

html {
  scroll-behavior:smooth;
  scroll-padding-top:105px;
}

body {
  margin:0;
  background:var(--paper);
  color:var(--ink);
  font-family:var(--sans);
  font-size:14px;
  line-height:1.7;
  -webkit-font-smoothing:antialiased;
}

::selection {
  background:#e2d4bd;
  color:#342d25;
}

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

button,input,textarea,select {
  font:inherit;
}

button,a,input,select,textarea,summary {
  -webkit-tap-highlight-color:transparent;
}

button {
  color:inherit;
  cursor:pointer;
}

button:disabled {
  cursor:default;
}

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

h1,h2,h3,p {
  margin:0;
}

ul,ol {
  margin:0;
  padding:0;
}

address {
  font-style:normal;
}

button {
  border:0;
}

svg {
  flex-shrink:0;
}

button,a,summary {
  touch-action:manipulation;
}

:focus-visible {
  outline:2px solid var(--brown);
  outline-offset:5px;
}

[hidden] {
  display:none!important;
}

.icon-definitions {
  position:absolute;
  width:0;
  height:0;
  overflow:hidden;
}

.icon {
  width:22px;
  height:22px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.5;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.container {
  width:min(1240px,calc(100% - 112px));
  margin-inline:auto;
}

.section {
  padding-block:106px;
}

.eyebrow {
  font-size:10px;
  letter-spacing:2.1px;
  font-weight:700;
  line-height:1.5;
  color:var(--brown);
  margin-bottom:21px;
  display:flex;
  align-items:center;
  gap:12px;
}

.eyebrow-line {
  width:26px;
  height:1px;
  background:var(--brown);
}

h1,h2 {
  font-family:var(--serif);
  font-weight:400;
  letter-spacing:-2px;
}

h1 {
  font-size:clamp(54px,5.25vw,76px);
  line-height:1.11;
}

h2 {
  font-size:clamp(36px,3.5vw,50px);
  line-height:1.18;
  letter-spacing:-1.65px;
}

h1 em,h2 em {
  font-weight:400;
  color:var(--brown);
}

.button {
  display:inline-flex;
  justify-content:center;
  align-items:center;
  gap:22px;
  padding:17px 22px;
  min-height:56px;
  background:var(--brown);
  color:#fffdf9;
  border:1px solid var(--brown);
  border-radius:5px;
  font-size:12px;
  font-weight:600;
  line-height:1.5;
  transition:background .2s,transform .2s,box-shadow .2s;
}

.button:hover {
  background:var(--brown-dark);
  border-color:var(--brown-dark);
  transform:translateY(-2px);
  box-shadow:0 5px 15px #63483215;
}

.button .icon {
  width:19px;
  height:19px;
}

.button-small {
  padding:13px 18px;
  min-height:46px;
}

.text-link {
  display:inline-flex;
  align-items:center;
  gap:14px;
  background:none;
  border:0;
  border-bottom:1px solid #a18c7170;
  padding:8px 0;
  font-size:12px;
  font-weight:600;
  transition:color .2s,gap .2s;
}

.text-link:hover {
  color:var(--brown);
  gap:20px;
}

.text-link .icon {
  width:17px;
  height:17px;
}

.sr-only {
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}

.skip-link {
  position:fixed;
  z-index:20;
  top:8px;
  left:10px;
  background:var(--ink);
  color:white;
  padding:12px 20px;
  transform:translateY(-150%);
}

.skip-link:focus {
  transform:translateY(0);
}

.topbar {
  background:var(--cream);
  border-bottom:1px solid #e6e1d7;
}

.topbar-inner {
  display:flex;
  align-items:center;
  justify-content:space-between;
  min-height:35px;
  font-size:10px;
  letter-spacing:.55px;
  color:#656657;
}

.topbar-dot {
  padding-inline:10px;
  color:#a8957e;
}

.site-header {
  background:#faf8f3f5;
  position:sticky;
  top:0;
  z-index:10;
  backdrop-filter:blur(12px);
  border-bottom:1px solid transparent;
  transition:border-color .2s;
}

.site-header.scrolled {
  border-color:var(--line);
}

.header-inner {
  height:100px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
}

.brand {
  display:inline-flex;
  align-items:center;
  gap:12px;
}

.brand-mark {
  width:33px;
  height:40px;
  color:var(--brown);
}

.brand-name {
  font-family:var(--serif);
  font-size:37px;
  line-height:1;
  letter-spacing:-1.7px;
}

.brand-caption {
  display:block;
  margin-top:9px;
  font-family:var(--sans);
  font-size:6.5px;
  font-weight:600;
  line-height:1.5;
  letter-spacing:1.5px;
}

.navigation {
  display:flex;
  align-items:center;
  gap:31px;
}

.navigation>a:not(.button) {
  font-size:11px;
  font-weight:500;
  padding-block:14px;
  transition:color .2s;
}

.navigation>a:not(.button):hover {
  color:var(--brown);
}

.navigation .nav-contact {
  margin-left:8px;
  font-size:11px;
  gap:27px;
}

.menu-toggle {
  display:none;
}

.hero {
  display:grid;
  grid-template-columns:1.01fr 1fr;
  gap:55px;
  padding-top:46px;
  padding-bottom:75px;
  align-items:center;
}

.hero-copy {
  padding-block:18px;
}

.hero .eyebrow {
  font-size:9px;
  letter-spacing:1.8px;
  margin-bottom:26px;
}

.hero-description {
  max-width:380px;
  font-size:13px;
  line-height:1.9;
  color:var(--muted);
  margin-top:28px;
}

.hero-actions {
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:21px;
  margin-top:30px;
}

.hero-actions .button {
  font-size:11px;
  padding-inline:18px;
  gap:18px;
}

.hero-actions .text-link {
  font-size:10px;
  gap:8px;
}

.hero-location {
  display:flex;
  align-items:center;
  gap:9px;
  margin-top:34px;
  color:var(--muted);
  font-size:10px;
}

.hero-location .icon {
  width:15px;
  height:15px;
  color:var(--brown);
}

.hero-visual {
  position:relative;
  align-self:stretch;
  min-height:510px;
  padding-top:8px;
  padding-bottom:28px;
}

.hero-image-wrap {
  height:100%;
  min-height:500px;
  overflow:hidden;
  border-radius:7px 145px 7px 7px;
  background:#e4d6c2;
}

.hero-image {
  width:100%;
  height:100%;
  min-height:500px;
  max-height:580px;
  object-fit:cover;
  object-position:52% 50%;
}

.hero-seal {
  position:absolute;
  right:-18px;
  top:27px;
  border:1px solid #d1c8b6;
  outline:7px solid var(--paper);
  width:107px;
  height:107px;
  background:var(--paper);
  border-radius:50%;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:5px;
  color:var(--brown);
  transform:rotate(11deg);
}

.hero-seal .icon {
  width:26px;
  height:26px;
}

.hero-seal span {
  text-align:center;
  font-family:var(--serif);
  font-size:15px;
  font-style:italic;
  line-height:1.1;
}

.hero-note {
  position:absolute;
  bottom:61px;
  left:-32px;
  display:flex;
  align-items:center;
  gap:14px;
  padding:21px 25px;
  background:#fffdf8f5;
  backdrop-filter:blur(10px);
  border:1px solid #f7f1e7;
  border-radius:6px;
  box-shadow:0 10px 30px #4b362d10;
}

.note-icon {
  display:flex;
  align-items:center;
  justify-content:center;
  width:36px;
  height:36px;
  background:#edeee5;
  border-radius:50%;
  color:#717a56;
}

.note-icon .icon {
  width:20px;
  height:20px;
}

.hero-note strong {
  display:block;
  font-size:12px;
  font-weight:600;
}

.hero-note div>span {
  display:block;
  font-size:9px;
  color:var(--muted);
  margin-top:3px;
}

.image-caption {
  position:absolute;
  right:0;
  bottom:2px;
  font-size:7px;
  letter-spacing:1.4px;
  color:#777367;
}

.facts {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  border-block:1px solid var(--line);
  padding-block:28px;
}

.fact {
  display:flex;
  align-items:center;
  justify-content:center;
  gap:17px;
  padding:6px 24px;
  border-right:1px solid var(--line);
}

.fact:first-child {
  justify-content:flex-start;
  padding-left:12px;
}

.fact:last-child {
  border-right:0;
  justify-content:flex-end;
  padding-right:12px;
}

.fact>.icon {
  width:28px;
  height:28px;
  color:var(--brown);
  stroke-width:1.2;
}

.fact strong {
  display:block;
  font-size:12px;
  font-weight:600;
}

.fact span {
  display:block;
  font-size:10px;
  color:var(--muted);
  margin-top:3px;
}

.section-heading {
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:35px;
  margin-bottom:42px;
}

.section-heading>p {
  max-width:350px;
  color:var(--muted);
  font-size:12px;
  line-height:1.95;
  padding-bottom:5px;
}

.service-grid {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

.service-card {
  position:relative;
  padding:30px 25px 25px;
  border:1px solid var(--line);
  border-radius:6px;
  transition:background .25s,transform .25s,border-color .25s;
  display:flex;
  flex-direction:column;
  min-height:320px;
}

.service-card:hover {
  background:#f0ebe2;
  transform:translateY(-5px);
  border-color:#c7b79d;
}

.service-number {
  position:absolute;
  top:24px;
  right:22px;
  color:#9a907e;
  font-size:9px;
  letter-spacing:1px;
}

.service-icon {
  width:34px;
  height:34px;
  color:var(--brown);
  stroke-width:1.2;
  margin-bottom:29px;
}

.service-card h3 {
  font-family:var(--serif);
  font-size:27px;
  font-weight:400;
  line-height:1.2;
  letter-spacing:-.5px;
  margin-bottom:15px;
}

.service-card p {
  font-size:11px;
  color:var(--muted);
  line-height:1.9;
  margin-bottom:25px;
}

.service-link {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:8px;
  font-size:10px;
  font-weight:600;
  margin-top:auto;
}

.service-link .icon {
  width:17px;
  height:17px;
  color:var(--brown);
}

.services-footnote {
  color:var(--muted);
  font-size:10px;
  text-align:center;
  margin-top:22px;
}

.about-section {
  padding-block:90px;
  background:var(--cream);
}

.about-grid {
  display:grid;
  grid-template-columns:.95fr 1fr;
  gap:100px;
  align-items:center;
}

.about-art {
  position:relative;
  min-height:520px;
  overflow:hidden;
  background:#e7dfd2;
  border-radius:6px;
  isolation:isolate;
}

.art-overline {
  position:absolute;
  top:31px;
  left:0;
  right:0;
  text-align:center;
  font-size:8px;
  color:#7a6b58;
  letter-spacing:1.7px;
}

.arch {
  position:absolute;
  border-radius:180px 180px 0 0;
}

.arch-back {
  width:68%;
  height:79%;
  background:#ded2bf;
  left:12%;
  bottom:-7%;
  transform:rotate(-12deg);
}

.arch-front {
  width:66%;
  height:78%;
  background:#f8f4ea;
  left:23%;
  bottom:-9%;
  transform:rotate(10deg);
  box-shadow:-20px 4px 40px #5d46310b;
  display:flex;
  align-items:center;
  justify-content:center;
}

.arch-front svg {
  width:60%;
  height:70%;
  color:#8c8d6c;
  transform:rotate(-10deg);
  margin-bottom:24%;
}

.art-year {
  position:absolute;
  left:25px;
  bottom:40px;
  display:flex;
  flex-direction:column;
  align-items:center;
  width:137px;
  height:137px;
  justify-content:center;
  background:var(--paper);
  border:1px solid #d8cbb8;
  box-shadow:0 8px 30px #4934190b;
  border-radius:50%;
}

.art-year strong {
  font-family:var(--serif);
  font-size:44px;
  font-weight:400;
  line-height:1.15;
  letter-spacing:-1px;
  color:var(--brown);
}

.art-year span {
  font-size:9px;
  color:#7b6a55;
}

.art-bottom {
  position:absolute;
  bottom:22px;
  right:19px;
  font-size:8px;
  letter-spacing:1.5px;
  writing-mode:vertical-rl;
  color:#796a57;
}

.about-copy>p:not(.eyebrow) {
  font-size:12px;
  color:var(--muted);
  line-height:1.95;
  margin-top:21px;
}

.about-principle {
  display:flex;
  gap:19px;
  margin-top:23px;
}

.about-principle>span {
  font-family:var(--serif);
  font-size:15px;
  color:var(--brown);
  border:1px solid #d6cbbb;
  width:34px;
  height:34px;
  flex-shrink:0;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
}

.about-principle h3 {
  font-size:12px;
  font-weight:600;
}

.about-principle p {
  font-size:11px;
  color:var(--muted);
  margin-top:3px;
}

.about-copy>.text-link {
  margin-top:24px;
}

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

.center-heading .eyebrow {
  justify-content:center;
}

.center-heading>p:last-child {
  font-size:12px;
  color:var(--muted);
  margin-top:21px;
}

.process-grid {
  list-style:none;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:62px;
  margin-top:56px;
}

.step-top {
  display:flex;
  align-items:center;
  gap:20px;
  margin-bottom:25px;
}

.step-number {
  font-family:var(--serif);
  font-size:35px;
  color:var(--brown);
  font-style:italic;
  line-height:1;
}

.step-line {
  height:1px;
  flex:1;
  background:var(--line);
}

.step-top>.icon {
  width:27px;
  height:27px;
  color:var(--brown);
  stroke-width:1.2;
}

.process-grid h3 {
  font-family:var(--serif);
  font-weight:400;
  font-size:25px;
  letter-spacing:-.5px;
  margin-bottom:13px;
}

.process-grid p {
  font-size:12px;
  color:var(--muted);
  line-height:1.9;
  max-width:300px;
}

.faq-section {
  background:#f3efe7;
  padding-block:88px;
}

.faq-grid {
  display:grid;
  grid-template-columns:1fr 1.2fr;
  gap:84px;
}

.faq-grid>div>p:not(.eyebrow) {
  font-size:12px;
  color:var(--muted);
  margin-top:23px;
}

.faq-grid .text-link {
  margin-top:26px;
}

.faq-list {
  border-top:1px solid #d9d2c5;
}

.faq-list details {
  border-bottom:1px solid #d9d2c5;
}

.faq-list summary {
  list-style:none;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:25px;
  padding:24px 0;
  font-size:12px;
  font-weight:600;
}

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

.faq-plus {
  display:block;
  position:relative;
  width:15px;
  height:15px;
  flex-shrink:0;
}

.faq-plus::before,.faq-plus::after {
  content:'';
  position:absolute;
  top:7px;
  left:0;
  height:1px;
  width:15px;
  background:var(--brown);
  transition:transform .2s;
}

.faq-plus::after {
  transform:rotate(90deg);
}

details[open] .faq-plus::after {
  transform:rotate(0);
}

.faq-answer {
  padding:0 30px 25px 0;
  font-size:12px;
  color:var(--muted);
  line-height:1.9;
}

.contact {
  display:grid;
  grid-template-columns:1fr 1.08fr;
  gap:100px;
  align-items:start;
  padding-block:105px 82px;
}

.contact-copy>p:not(.eyebrow) {
  font-size:12px;
  color:var(--muted);
  margin-top:25px;
  line-height:1.9;
}

.contact-detail {
  display:flex;
  align-items:flex-start;
  gap:17px;
  margin-top:28px;
}

.contact-icon {
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  width:42px;
  height:42px;
  border:1px solid var(--line);
  border-radius:50%;
  color:var(--brown);
}

.contact-icon .icon {
  width:18px;
  height:18px;
}

.contact-detail>div>span {
  font-size:10px;
  color:var(--muted);
  display:block;
  margin-bottom:4px;
}

.contact-detail>div>a:not(.map-link) {
  font-size:13px;
  font-weight:500;
  overflow-wrap:anywhere;
}

.contact-detail>div>a:hover {
  text-decoration:underline;
  text-underline-offset:4px;
}

.contact-detail address {
  font-size:13px;
  line-height:1.7;
}

.map-link {
  display:inline-flex;
  align-items:center;
  gap:7px;
  margin-top:9px;
  font-size:10px;
  color:var(--brown);
}

.map-link .icon {
  width:13px;
  height:13px;
}

.contact-panel {
  background:#f0ebe2;
  border:1px solid #e6ded1;
  border-radius:8px;
  padding:35px;
}

.contact-panel>h3 {
  font-family:var(--serif);
  font-weight:400;
  font-size:28px;
  letter-spacing:-.65px;
  line-height:1.3;
}

.form-intro {
  font-size:11px;
  color:var(--muted);
  margin-top:10px;
  margin-bottom:27px;
}

.form-row {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}

.field {
  display:flex;
  flex-direction:column;
  margin-bottom:18px;
}

.field label {
  font-size:10px;
  font-weight:600;
  margin-bottom:7px;
}

.field label span {
  color:var(--brown);
}

input,textarea,select {
  width:100%;
  min-width:0;
  border:1px solid #d6cdbc;
  border-radius:4px;
  background:#faf8f3;
  color:var(--ink);
  padding:12px 13px;
  font-size:11px;
  line-height:1.7;
  transition:border-color .2s;
}

input::placeholder,textarea::placeholder {
  color:#777468;
}

input:hover,textarea:hover,select:hover {
  border-color:#b5a488;
}

textarea {
  resize:vertical;
  min-height:105px;
  max-height:360px;
}

select {
  min-height:44px;
}

.field-hint {
  font-size:9px;
  line-height:1.5;
  color:#727063;
  margin-top:5px;
}

.form-note {
  font-size:9px;
  line-height:1.8;
  color:#727063;
  margin-block:0 19px;
}

.form-submit {
  width:100%;
  justify-content:space-between;
  font-size:12px;
  min-height:50px;
  padding:13px 17px;
}

.draft-result {
  margin-top:23px;
  padding-top:20px;
  border-top:1px solid #d6cdbc;
}

.draft-heading {
  display:flex;
  align-items:center;
  gap:9px;
  font-weight:600;
  font-size:13px;
}

.draft-heading .icon {
  color:#69734b;
}

.draft-result>p:not(.draft-heading) {
  font-size:11px;
  color:var(--muted);
  margin-top:7px;
}

.draft-actions {
  display:flex;
  flex-wrap:wrap;
  gap:15px;
  align-items:center;
  margin-top:17px;
}

.draft-preview {
  margin-top:18px;
  font-size:11px;
}

.draft-preview summary {
  cursor:pointer;
  padding-block:6px;
}

.draft-preview textarea {
  margin-top:10px;
  min-height:190px;
}

.copy-status:empty {
  display:none;
}

.noscript-note {
  font-size:12px;
  padding-top:15px;
}

.noscript-note a {
  text-decoration:underline;
}

.closing-line {
  display:flex;
  justify-content:center;
  align-items:center;
  gap:20px;
  border-top:1px solid var(--line);
  padding-block:37px 50px;
}

.closing-line .icon {
  width:25px;
  height:25px;
  color:var(--brown);
  stroke-width:1.2;
}

.closing-line p {
  font-family:var(--serif);
  font-size:25px;
  letter-spacing:-.4px;
}

.closing-line em {
  color:var(--brown);
}

.site-footer {
  background:#ece6da;
  padding-block:40px 20px;
}

.footer-main {
  display:grid;
  grid-template-columns:1.2fr 1.3fr 1fr auto;
  gap:40px;
  align-items:center;
  padding-bottom:34px;
}

.footer-main .brand-name {
  font-size:31px;
}

.footer-main .brand-caption {
  font-size:5.5px;
  letter-spacing:1.15px;
}

.footer-main .brand-mark {
  width:28px;
  height:34px;
}

.footer-main>p {
  font-size:11px;
  line-height:1.9;
}

.company-numbers {
  display:flex;
  flex-direction:column;
  font-size:10px;
  color:#6c6b5f;
  line-height:1.9;
}

.back-top {
  display:flex;
  align-items:center;
  justify-content:center;
  width:43px;
  height:43px;
  border:1px solid #bbaa94;
  border-radius:50%;
  color:var(--brown);
  transition:background .2s;
}

.back-top:hover {
  background:#e0d4c2;
}

.back-top .icon {
  transform:rotate(-90deg);
  width:18px;
  height:18px;
}

.footer-bottom {
  display:flex;
  justify-content:space-between;
  gap:25px;
  border-top:1px solid #d7cebe;
  padding-top:20px;
  font-size:9px;
  color:#716c5e;
}

.footer-bottom>div {
  display:flex;
  gap:24px;
  align-items:center;
}

.footer-bottom button {
  background:none;
  padding:0;
  font-size:inherit;
  color:inherit;
}

.footer-bottom a {
  display:inline-flex;
  align-items:center;
  gap:4px;
}

.footer-bottom a:hover,.footer-bottom button:hover {
  text-decoration:underline;
  text-underline-offset:3px;
}

.footer-bottom .icon {
  width:11px;
  height:11px;
}

dialog {
  width:min(590px,calc(100% - 32px));
  max-height:85vh;
  padding:0;
  border:1px solid var(--line);
  border-radius:10px;
  background:var(--paper);
  color:var(--ink);
  box-shadow:0 25px 90px #362c2530;
}

dialog::backdrop {
  background:#39332675;
  backdrop-filter:blur(4px);
}

.dialog-content {
  position:relative;
  padding:38px;
}

.dialog-content h2 {
  font-size:34px;
}

.dialog-content p:not(.eyebrow) {
  font-size:12px;
  color:var(--muted);
  margin-top:20px;
  line-height:1.9;
}

.dialog-content a {
  color:var(--brown);
  text-decoration:underline;
  overflow-wrap:anywhere;
}

.dialog-content .dialog-note {
  font-size:10px!important;
  border-top:1px solid var(--line);
  padding-top:17px;
}

.dialog-content>.button {
  margin-top:24px;
}

.dialog-close {
  position:absolute;
  right:13px;
  top:9px;
  width:36px;
  height:36px;
  background:none;
  font-size:28px;
  font-weight:300;
  line-height:1;
}

@media(min-width:1550px) {
  .container {
    width:min(1320px,calc(100% - 150px));
  }
  .hero {
    gap:85px;
    padding-top:60px;
    padding-bottom:90px;
  }
  .hero-visual {
    min-height:580px;
  }
  .hero-image {
    max-height:620px;
  }
  .hero-description {
    font-size:14px;
  }
  .hero-actions {
    gap:27px;
  }
  .hero-actions .button {
    font-size:12px;
  }
  .hero-actions .text-link {
    font-size:11px;
  }
}

@media(max-width:1150px) {
  .container {
    width:calc(100% - 72px);
  }
  .navigation {
    gap:21px;
  }
  .hero {
    gap:32px;
    padding-top:30px;
  }
  .hero-actions {
    gap:12px;
  }
  .hero-actions .button {
    font-size:10px;
    padding-inline:14px;
    gap:14px;
  }
  .hero-visual {
    min-height:490px;
  }
  .hero-image-wrap,.hero-image {
    min-height:470px;
  }
  .hero-note {
    padding:17px;
    left:-20px;
  }
  .hero-note strong {
    font-size:11px;
  }
  .hero-note div>span {
    font-size:8px;
  }
  .hero-seal {
    right:-10px;
    top:22px;
    width:90px;
    height:90px;
  }
  .service-card {
    padding:28px 19px 22px;
  }
  .service-card h3 {
    font-size:25px;
  }
  .service-card p {
    font-size:10px;
  }
  .service-link {
    font-size:9px;
  }
  .about-grid {
    gap:60px;
  }
  .about-art {
    min-height:490px;
  }
  .contact {
    gap:65px;
  }
  .contact-panel {
    padding:28px;
  }
  .contact-panel>h3 {
    font-size:25px;
  }
  .faq-grid {
    gap:50px;
  }
  .footer-main {
    gap:22px;
  }
}

@media(max-width:900px) {
  .container {
    width:calc(100% - 48px);
  }
  .header-inner {
    height:86px;
  }
  .brand-name {
    font-size:33px;
  }
  .brand-caption {
    font-size:5.7px;
  }
  .brand-mark {
    width:28px;
  }
  .navigation {
    gap:17px;
  }
  .navigation>a:not(.button) {
    font-size:10px;
  }
  .navigation .nav-contact {
    padding:11px 12px;
    gap:12px;
    min-height:42px;
    font-size:10px;
    margin-left:0;
  }
  .hero {
    gap:30px;
  }
  .hero h1 {
    font-size:53px;
  }
  .hero .eyebrow {
    font-size:8px;
    letter-spacing:1.2px;
    gap:8px;
  }
  .hero-description {
    font-size:12px;
  }
  .hero-actions {
    align-items:flex-start;
    flex-direction:column;
    margin-top:24px;
    gap:12px;
  }
  .hero-location {
    font-size:9px;
    margin-top:23px;
  }
  .hero-visual {
    min-height:475px;
  }
  .hero-image-wrap,.hero-image {
    min-height:470px;
  }
  .hero-note {
    bottom:57px;
    gap:10px;
    padding:14px;
  }
  .note-icon {
    width:30px;
    height:30px;
  }
  .hero-note strong {
    font-size:10px;
  }
  .hero-note div>span {
    font-size:8px;
  }
  .image-caption {
    font-size:6px;
    letter-spacing:1px;
  }
  .fact {
    padding-inline:12px;
    gap:10px;
  }
  .fact>.icon {
    width:23px;
    height:23px;
  }
  .fact strong {
    font-size:10px;
  }
  .fact span {
    font-size:9px;
  }
  .section {
    padding-block:80px;
  }
  .section-heading {
    gap:35px;
  }
  .section-heading>p {
    max-width:260px;
    font-size:11px;
  }
  .service-grid {
    grid-template-columns:repeat(2,1fr);
    gap:18px;
  }
  .service-card {
    padding:29px;
    min-height:300px;
  }
  .service-card h3 {
    font-size:28px;
  }
  .service-card p {
    font-size:12px;
  }
  .service-link {
    font-size:11px;
  }
  .service-icon {
    margin-bottom:23px;
  }
  .about-grid {
    gap:35px;
  }
  .about-art {
    min-height:490px;
  }
  .about-copy h2 {
    font-size:37px;
  }
  .about-copy>p:not(.eyebrow) {
    font-size:11px;
  }
  .about-principle {
    gap:13px;
  }
  .about-principle p {
    font-size:10px;
  }
  .about-principle h3 {
    font-size:11px;
  }
  .art-overline {
    font-size:6px;
    letter-spacing:1.2px;
  }
  .art-year {
    width:110px;
    height:110px;
    left:19px;
  }
  .art-year strong {
    font-size:36px;
  }
  .process-grid {
    gap:35px;
  }
  .process-grid h3 {
    font-size:22px;
  }
  .process-grid p {
    font-size:11px;
  }
  .faq-grid {
    gap:35px;
    grid-template-columns:.95fr 1.1fr;
  }
  .faq-grid h2 {
    font-size:36px;
  }
  .faq-list summary {
    font-size:11px;
  }
  .contact {
    gap:40px;
    grid-template-columns:.9fr 1.1fr;
  }
  .contact-copy h2 {
    font-size:44px;
  }
  .contact-panel {
    padding:25px;
  }
  .contact-panel>h3 {
    font-size:24px;
  }
  .form-row {
    grid-template-columns:1fr;
    gap:0;
  }
  .contact-detail>div>a:not(.map-link) {
    font-size:11px;
  }
  .contact-detail {
    gap:12px;
  }
  .contact-icon {
    width:36px;
    height:36px;
  }
  .footer-main {
    grid-template-columns:1fr 1fr auto;
  }
  .company-numbers {
    grid-column:2;
    grid-row:2;
  }
  .footer-main>.brand {
    grid-row:1 / 3;
  }
  .back-top {
    grid-column:3;
    grid-row:1 / 3;
  }
  .footer-main>p {
    font-size:10px;
  }
  .footer-bottom>span:last-child {
    display:none;
  }
}

@media(max-width:680px) {
  html {
    scroll-padding-top:90px;
  }
  .container {
    width:calc(100% - 40px);
  }
  .topbar-inner {
    font-size:8px;
    letter-spacing:.25px;
    min-height:30px;
  }
  .topbar-dot {
    padding-inline:5px;
  }
  .header-inner {
    height:80px;
  }
  .brand-name {
    font-size:34px;
  }
  .brand-caption {
    font-size:5.8px;
  }
  .menu-toggle {
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    gap:6px;
    width:44px;
    height:44px;
    border:1px solid #d8cbb8;
    border-radius:50%;
    background:transparent;
    z-index:12;
  }
  .menu-toggle span {
    width:17px;
    height:1px;
    background:var(--brown);
    transition:transform .2s;
  }
  .menu-toggle[aria-expanded=true] span:first-child {
    transform:translateY(3.5px) rotate(45deg);
  }
  .menu-toggle[aria-expanded=true] span:last-child {
    transform:translateY(-3.5px) rotate(-45deg);
  }
  .navigation {
    display:none;
    position:absolute;
    top:80px;
    left:0;
    right:0;
    padding:18px 24px 26px;
    background:var(--paper);
    border-bottom:1px solid var(--line);
    box-shadow:0 18px 20px #3d32230a;
  }
  .navigation.is-open {
    display:flex;
    flex-direction:column;
    align-items:stretch;
    gap:0;
  }
  .navigation>a:not(.button) {
    font-size:14px;
    padding:14px 0;
    border-bottom:1px solid var(--line);
  }
  .navigation .nav-contact {
    margin-top:17px;
    font-size:12px;
    min-height:48px;
    justify-content:space-between;
    padding-inline:17px;
  }
  .hero {
    display:flex;
    flex-direction:column;
    gap:37px;
    padding-top:32px;
    padding-bottom:47px;
    align-items:stretch;
  }
  .hero-copy {
    padding:0 3px;
  }
  .hero .eyebrow {
    font-size:8px;
    letter-spacing:1.5px;
    margin-bottom:24px;
  }
  .hero h1 {
    font-size:clamp(46px,11.5vw,70px);
    line-height:1.08;
    letter-spacing:-2px;
  }
  .hero-description {
    max-width:360px;
    margin-top:24px;
    font-size:12px;
    line-height:1.9;
  }
  .hero-actions {
    flex-direction:row;
    align-items:center;
    gap:17px;
    margin-top:25px;
  }
  .hero-actions .button {
    font-size:10px;
    padding:15px;
    min-height:50px;
    gap:15px;
  }
  .hero-actions .text-link {
    font-size:10px;
  }
  .hero-location {
    font-size:9px;
    margin-top:24px;
  }
  .hero-visual {
    min-height:0;
    height:390px;
    margin-inline:3px;
    padding-top:0;
    padding-bottom:26px;
  }
  .hero-image-wrap {
    min-height:0;
    height:100%;
    border-top-right-radius:110px;
  }
  .hero-image {
    min-height:0;
    height:100%;
    object-position:50% 57%;
  }
  .hero-seal {
    width:87px;
    height:87px;
    right:-8px;
    top:15px;
    outline-width:6px;
  }
  .hero-seal span {
    font-size:13px;
  }
  .hero-seal .icon {
    width:22px;
    height:22px;
  }
  .hero-note {
    left:-8px;
    bottom:51px;
    padding:17px;
    gap:13px;
  }
  .hero-note strong {
    font-size:11px;
  }
  .hero-note div>span {
    font-size:8px;
  }
  .note-icon {
    width:33px;
    height:33px;
  }
  .image-caption {
    font-size:6px;
    bottom:0;
    letter-spacing:1.1px;
  }
  .facts {
    grid-template-columns:1fr;
    padding-block:5px;
  }
  .fact,.fact:first-child,.fact:last-child {
    justify-content:flex-start;
    padding:19px 11px;
    gap:17px;
    border:0;
    border-bottom:1px solid var(--line);
  }
  .fact:last-child {
    border:0;
  }
  .fact>.icon {
    width:25px;
    height:25px;
  }
  .fact strong {
    font-size:12px;
  }
  .fact span {
    font-size:10px;
  }
  .section {
    padding-block:64px;
  }
  .eyebrow {
    font-size:9px;
    letter-spacing:1.8px;
    margin-bottom:17px;
  }
  h2 {
    font-size:37px;
    letter-spacing:-1.4px;
  }
  .section-heading {
    display:block;
    margin-bottom:30px;
  }
  .section-heading>p {
    max-width:360px;
    margin-top:20px;
    font-size:12px;
  }
  .desktop-only {
    display:none;
  }
  .service-grid {
    gap:12px;
  }
  .service-card {
    padding:23px 17px 20px;
    min-height:305px;
  }
  .service-number {
    top:19px;
    right:16px;
    font-size:8px;
  }
  .service-icon {
    width:29px;
    height:29px;
    margin-bottom:28px;
  }
  .service-card h3 {
    font-size:24px;
    letter-spacing:-.6px;
  }
  .service-card p {
    font-size:10px;
    line-height:1.8;
    margin-bottom:23px;
  }
  .service-link {
    font-size:9px;
    gap:4px;
  }
  .service-link .icon {
    width:14px;
    height:14px;
  }
  .services-footnote {
    font-size:9px;
    text-align:left;
    line-height:1.8;
    padding-inline:3px;
    margin-top:18px;
  }
  .about-section {
    padding-block:55px;
  }
  .about-grid {
    display:flex;
    flex-direction:column-reverse;
    gap:36px;
  }
  .about-copy h2 {
    font-size:39px;
  }
  .about-copy>p:not(.eyebrow) {
    font-size:12px;
  }
  .about-principle {
    gap:15px;
    margin-top:22px;
  }
  .about-principle h3 {
    font-size:12px;
  }
  .about-principle p {
    font-size:11px;
  }
  .about-art {
    width:100%;
    min-height:385px;
  }
  .art-overline {
    font-size:7px;
    letter-spacing:1.6px;
    top:25px;
  }
  .arch-front {
    height:86%;
    width:60%;
    left:30%;
    bottom:-15%;
  }
  .arch-back {
    height:86%;
    width:64%;
    left:19%;
    bottom:-12%;
  }
  .art-year {
    width:121px;
    height:121px;
    left:22px;
    bottom:27px;
  }
  .art-year strong {
    font-size:42px;
  }
  .center-heading {
    text-align:left;
  }
  .center-heading .eyebrow {
    justify-content:flex-start;
  }
  .center-heading h2 {
    font-size:36px;
  }
  .center-heading h2 br {
    display:none;
  }
  .center-heading>p:last-child {
    font-size:12px;
    margin-top:18px;
  }
  .process-grid {
    grid-template-columns:1fr;
    gap:33px;
    margin-top:38px;
  }
  .step-top {
    gap:20px;
    margin-bottom:16px;
  }
  .step-number {
    font-size:31px;
  }
  .step-top>.icon {
    width:25px;
    height:25px;
  }
  .process-grid h3 {
    font-size:25px;
    margin-bottom:9px;
  }
  .process-grid p {
    font-size:12px;
    max-width:100%;
  }
  .faq-section {
    padding-block:57px;
  }
  .faq-grid {
    grid-template-columns:1fr;
    gap:34px;
  }
  .faq-grid h2 {
    font-size:38px;
  }
  .faq-grid>div>p:not(.eyebrow) {
    margin-top:18px;
  }
  .faq-grid .text-link {
    margin-top:18px;
  }
  .faq-list summary {
    font-size:12px;
    padding-block:22px;
  }
  .faq-answer {
    padding-right:15px;
  }
  .contact {
    grid-template-columns:1fr;
    gap:34px;
    padding-block:64px 48px;
  }
  .contact-copy h2 {
    font-size:47px;
  }
  .contact-copy>p:not(.eyebrow) {
    font-size:12px;
    margin-top:22px;
  }
  .contact-detail>div>a:not(.map-link) {
    font-size:12px;
  }
  .contact-detail {
    margin-top:25px;
    gap:15px;
  }
  .contact-icon {
    width:41px;
    height:41px;
  }
  .contact-panel {
    padding:25px 21px;
  }
  .contact-panel>h3 {
    font-size:27px;
  }
  .form-intro {
    font-size:11px;
    margin-bottom:23px;
  }
  .field label {
    font-size:11px;
  }
  input,select,textarea {
    font-size:16px;
    padding:11px 12px;
  }
  .field-hint {
    font-size:9px;
  }
  .form-note {
    font-size:10px;
  }
  .form-submit {
    font-size:12px;
    min-height:53px;
  }
  .closing-line {
    padding-block:27px 35px;
    gap:15px;
    align-items:flex-start;
  }
  .closing-line p {
    font-size:24px;
    line-height:1.35;
  }
  .closing-line .icon {
    width:24px;
    height:24px;
    margin-top:4px;
  }
  .site-footer {
    padding-top:32px;
  }
  .footer-main {
    grid-template-columns:1fr auto;
    gap:23px;
    padding-bottom:28px;
  }
  .footer-main>.brand {
    grid-column:1;
    grid-row:1;
  }
  .footer-main>p {
    grid-column:1;
    grid-row:2;
    font-size:11px;
  }
  .company-numbers {
    grid-column:1;
    grid-row:3;
    font-size:10px;
  }
  .back-top {
    grid-column:2;
    grid-row:1;
    align-self:center;
  }
  .footer-bottom {
    flex-direction:column;
    gap:12px;
    font-size:9px;
  }
  .footer-bottom>div {
    gap:22px;
  }
  .footer-bottom button {
    padding-block:6px;
  }
  .dialog-content {
    padding:32px 24px;
  }
  .dialog-content h2 {
    font-size:29px;
  }
}

@media(max-width:360px) {
  .container {
    width:calc(100% - 32px);
  }
  .topbar-inner {
    font-size:7px;
  }
  .hero-actions {
    flex-direction:column;
    align-items:flex-start;
    gap:10px;
  }
  .hero h1 {
    font-size:44px;
  }
  .hero-visual {
    height:330px;
  }
  .hero-note {
    padding:13px;
    left:-5px;
    gap:9px;
  }
  .hero-note strong {
    font-size:10px;
  }
  .hero-note div>span {
    font-size:7px;
  }
  .service-card {
    padding-inline:14px;
  }
  .service-card h3 {
    font-size:22px;
  }
  .service-link {
    font-size:8px;
  }
  .service-card p {
    font-size:10px;
  }
  .contact-panel {
    padding-inline:18px;
  }
  .contact-panel>h3 {
    font-size:24px;
  }
  .closing-line p {
    font-size:22px;
  }
}

@media(prefers-reduced-motion:reduce) {
  html {
    scroll-behavior:auto;
  }
  *,*::before,*::after {
    animation:none!important;
    transition:none!important;
  }
  .button:hover,.service-card:hover {
    transform:none;
  }
}

@media print {
  .topbar,.navigation,.menu-toggle,.hero-seal,.hero-note,.hero-actions,.contact-panel,.back-top,.privacy-trigger,.closing-line,dialog {
    display:none!important;
  }
  .site-header {
    position:static;
  }
  .container {
    width:100%;
  }
  .hero {
    padding-block:20px;
    gap:20px;
  }
  .hero h1 {
    font-size:40px;
  }
  .hero-visual {
    min-height:250px;
  }
  .hero-image-wrap,.hero-image {
    min-height:250px;
    max-height:300px;
  }
  .section,.about-section,.faq-section {
    padding-block:30px;
  }
  .service-grid {
    grid-template-columns:repeat(2,1fr);
  }
  .service-card {
    break-inside:avoid;
  }
  .contact {
    display:block;
  }
  .about-art {
    display:none;
  }
  .about-grid {
    display:block;
  }
  .faq-list details>.faq-answer {
    display:block;
  }
  .site-footer {
    background:none;
  }
  body {
    background:white;
  }
}
