:root {
  --background: #fff;
  --foreground: #17333e;
  --primary: #173d49;
  --primary-foreground: #fff;
  --secondary: #f1f4f3;
  --muted: #f3f5f4;
  --muted-foreground: #68777c;
  --border: #dbe2e3;
  --accent: #cbdad8;
  --font-sans: 'Manrope', 'Noto Sans Thai', sans-serif;
  --radius: 3px;
  --page-width: 1240px;
}
.dark {
  --background: #122d36;
  --foreground: #f5f7f5;
  --primary: #b7d0d0;
  --primary-foreground: #122d36;
  --secondary: #1a3e49;
  --muted: #244550;
  --muted-foreground: #b6c9cd;
  --border: #3e5963;
  --accent: #aecac7;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}
a,
summary {
  touch-action: manipulation;
}
button,
input {
  font: inherit;
}
img {
  display: block;
  max-width: 100%;
}
h1,
h2,
h3,
p,
figure {
  margin: 0;
}
h1,
h2,
h3 {
  font-family: 'Noto Sans Thai', sans-serif;
}
a:focus-visible,
summary:focus-visible {
  outline: 3px solid #2786a2;
  outline-offset: 6px;
}
::selection {
  background: #c4dbd9;
  color: #102d36;
}
.section-wrap {
  width: min(var(--page-width), calc(100% - 112px));
  margin-inline: auto;
}
.skip-link {
  position: fixed;
  top: -100px;
  left: 20px;
  z-index: 50;
  padding: 14px 25px;
  background: #fff;
}
.skip-link:focus {
  top: 12px;
}
.site-header {
  background: #fff;
  position: relative;
  z-index: 20;
}
.header-inner {
  height: 98px;
  width: calc(100% - 100px);
  max-width: 1450px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.brand-symbol {
  width: 44px;
  height: 44px;
  border: 1px solid #7a9094;
  display: grid;
  place-items: center;
  border-radius: 50%;
}
.brand-name {
  font-family: Georgia, serif;
  font-size: 1.5625rem;
  letter-spacing: 2px;
  line-height: 1.08;
}
.brand-name > span {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 0.625rem;
  letter-spacing: 7px;
  padding-left: 3px;
  margin-top: 7px;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 31px;
  font-size: 0.875rem;
  font-weight: 500;
}
.desktop-nav a {
  transition: color 0.2s;
}
.desktop-nav a:hover {
  color: #669093;
}
.header-contact {
  display: flex;
  align-items: center;
  gap: 28px;
  background: var(--primary);
  color: #fff;
  padding: 12px 21px;
  font-size: 0.875rem;
}
.header-contact:hover {
  background: #285563;
}
.mobile-menu {
  display: none;
}
.hero {
  position: relative;
  min-height: 645px;
  height: min(760px, 76vw);
  max-height: calc(100svh - 100px);
  background: #1b3b45;
  color: #fff;
  overflow: hidden;
}
.hero-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 55%;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(6, 25, 32, 0.74),
      rgba(7, 28, 35, 0.24) 68%,
      rgba(7, 28, 35, 0.13)
    ),
    linear-gradient(0deg, rgba(5, 23, 30, 0.5), transparent 60%);
}
.hero-top {
  position: absolute;
  top: 31px;
  left: 52px;
  right: 52px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.75rem;
  letter-spacing: 2px;
  font-weight: 500;
}
.hero-top > span:first-child {
  display: flex;
  align-items: center;
  gap: 10px;
}
.tiny-dot {
  width: 5px;
  height: 5px;
  background: #d1e9e3;
  border-radius: 50%;
}
.hero-coordinate {
  font-size: 0.75rem;
  opacity: 0.8;
}
.hero-content {
  position: relative;
  margin: auto;
  padding-top: 150px;
  padding-bottom: 100px;
  width: min(var(--page-width), calc(100% - 112px));
}
.eyebrow {
  font-size: 0.75rem;
  font-weight: 650;
  letter-spacing: 2.5px;
  line-height: 1.8;
  color: #5b757b;
  display: flex;
  align-items: center;
  gap: 14px;
}
.eyebrow.light {
  color: #c4d8d9;
}
.hero h1 {
  font-size: clamp(40px, 4.65vw, 69px);
  font-weight: 500;
  letter-spacing: -2px;
  line-height: 1.45;
  margin-top: 24px;
}
.soft-white {
  color: #c6dedb;
}
.hero-service-title {
  font-size: 0.65em;
  letter-spacing: -0.5px;
}
.faq-section {
  padding-block: 80px;
}
.faq-list {
  border-top: 1px solid var(--border);
}
.faq-list details {
  border-bottom: 1px solid var(--border);
  padding-block: 21px;
}
.faq-list summary {
  cursor: pointer;
  font-weight: 550;
  font-size: 1.0625rem;
  padding-right: 12px;
}
.faq-list p {
  max-width: 850px;
  margin-top: 14px;
  color: #526970;
  line-height: 1.9;
}
.hero-description {
  color: #e1e8e9;
  font-size: 1rem;
  margin-top: 20px;
  line-height: 1.95;
  font-weight: 400;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 31px;
  margin-top: 32px;
}
.button {
  min-height: 51px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 13px 25px;
  font-size: 0.875rem;
  font-weight: 550;
  transition:
    background 0.2s,
    transform 0.2s;
}
.button:hover {
  transform: translateY(-2px);
}
.button-light {
  background: #f9faf5;
  color: #1b3943;
}
.button-light:hover {
  background: #dce9e5;
}
.hero-map {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
}
.hero-map:hover {
  text-decoration: underline;
  text-underline-offset: 6px;
}
.hero-discover {
  position: absolute;
  bottom: 35px;
  right: 52px;
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.875rem;
}
.circle-arrow {
  display: grid;
  place-items: center;
  width: 43px;
  height: 43px;
  border: 1px solid #ffffff70;
  border-radius: 50%;
  transition: background 0.2s;
}
.hero-discover:hover .circle-arrow {
  background: #ffffff26;
}
.hero-index {
  position: absolute;
  bottom: 43px;
  left: 52px;
  font-size: 0.75rem;
  letter-spacing: 2px;
}
.hero-index > span {
  margin-inline: 12px;
  opacity: 0.5;
}
.quick-info {
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1.05fr 1fr 1fr;
  padding: 29px max(56px, calc((100vw - var(--page-width)) /2));
  gap: 30px;
  background: #f7f8f5;
}
.quick-item {
  display: flex;
  align-items: center;
  gap: 17px;
  position: relative;
}
.quick-item:not(:first-child) {
  border-left: 1px solid #d3dcda;
  padding-left: 38px;
}
.quick-item strong {
  font-size: 0.875rem;
  font-weight: 550;
}
.quick-caption {
  display: block;
  font-size: 0.75rem;
  color: #67777b;
  margin-top: 1px;
}
.rating-number {
  font-size: 2.3125rem;
  line-height: 1;
  letter-spacing: -2px;
  font-weight: 500;
}
.stars {
  display: flex;
  gap: 2px;
  color: #a18a57;
  margin-bottom: 6px;
}
.quick-arrow {
  margin-left: 14px;
  color: #6e8488;
}
.rating-item:hover .quick-caption {
  text-decoration: underline;
}
.about {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 100px;
  padding-block: 107px 95px;
}
.short-rule {
  display: inline-block;
  width: 24px;
  height: 1px;
  background: #6c8a8e;
}
.about h2 {
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.55;
  font-weight: 500;
  letter-spacing: -1px;
  margin-top: 26px;
}
.about h2 span {
  color: #6e8587;
}
.about-copy {
  padding-top: 3px;
  max-width: 540px;
}
.about-copy p {
  font-size: 1rem;
  color: #60737a;
  line-height: 2;
}
.about-copy p + p {
  margin-top: 16px;
}
.about-copy strong {
  color: #23414b;
  font-weight: 550;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid #aababc;
  padding-bottom: 7px;
  font-size: 0.875rem;
  line-height: 1.8;
  transition: gap 0.2s;
}
.about-copy .text-link {
  margin-top: 24px;
}
.text-link:hover {
  gap: 32px;
  color: #49767f;
}
.services {
  padding-block: 4px 100px;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  margin-bottom: 40px;
}
.section-heading h2 {
  font-size: 2rem;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: -0.8px;
  margin-top: 12px;
}
.section-note {
  font-size: 0.75rem;
  letter-spacing: 1.8px;
  color: #6c8389;
  margin-bottom: 7px;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid #b5c5c9;
  border-bottom: 1px solid var(--border);
}
.service {
  padding: 32px 35px 31px 0;
}
.service + .service {
  border-left: 1px solid var(--border);
  padding-left: 35px;
}
.service-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #587b84;
  margin-bottom: 22px;
}
.service-top span {
  font-size: 0.75rem;
  color: #718a90;
}
.service h3 {
  font-size: 1.375rem;
  font-weight: 500;
  margin-bottom: 12px;
}
.service p {
  font-size: 1rem;
  color: #61747b;
  line-height: 1.9;
}
.service-english {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  margin-top: 29px;
  color: #617b83;
}
.gallery-section {
  background: #f1f4f3;
  padding-block: 88px 62px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  grid-template-rows: 248px 248px;
  gap: 18px;
}
.gallery-grid figure {
  position: relative;
  overflow: hidden;
  background: #b2c2c2;
}
.gallery-large {
  grid-row: span 2;
}
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}
.gallery-grid figure:hover img {
  transform: scale(1.035);
}
.gallery-grid figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 47px 24px 23px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  color: #fff;
  background: linear-gradient(transparent, rgba(11, 30, 36, 0.72));
}
.photo-credit {
  margin-top: 19px;
  font-size: 0.75rem;
  color: #637980;
  text-align: right;
}
.photo-credit a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.contact-section {
  background: #143541;
  color: #fff;
  padding-block: 88px;
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 78px;
  align-items: center;
}
.contact-copy h2 {
  font-size: 2.625rem;
  font-weight: 450;
  line-height: 1.48;
  letter-spacing: -1px;
  margin-top: 19px;
}
.contact-copy h2 span {
  color: #bad1ce;
}
.contact-intro {
  font-size: 1rem;
  line-height: 1.95;
  color: #b9cbcf;
  margin-top: 22px;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 30px;
}
.contact-details > div,
.contact-details > a {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  font-size: 1rem;
  color: #d9e4e6;
}
.contact-details svg {
  margin-top: 3px;
  flex-shrink: 0;
  color: #9bb9bf;
}
.contact-details > a {
  font-size: 1.375rem;
  letter-spacing: 1px;
  align-items: center;
  line-height: 1.5;
}
.contact-details > a svg {
  margin: 0;
}
.contact-actions {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.contact-actions .button {
  gap: 15px;
}
.contact-phone {
  display: flex;
  gap: 12px;
  font-size: 0.875rem;
  align-items: center;
}
.contact-phone:hover {
  text-decoration: underline;
}
.map-panel {
  position: relative;
  background: #dfe8e5;
  min-height: 490px;
  align-self: stretch;
}
.map-panel iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  border: 0;
  min-height: 400px;
}
.map-caption {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: #fff;
  color: #17333e;
  padding: 20px 22px;
  box-shadow: 0 3px 20px #17333e12;
}
.map-caption strong {
  display: block;
  font-size: 0.875rem;
  letter-spacing: 1.8px;
  font-family: Georgia, serif;
  font-weight: 400;
}
.map-caption span {
  display: block;
  font-size: 0.75rem;
  color: #657c83;
  margin-top: 3px;
}
.map-caption a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: #edf2f0;
}
.map-caption a:hover {
  background: #d8e5df;
}
.site-footer {
  background: #fff;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding-block: 44px 37px;
}
.brand-footer .brand-symbol {
  width: 38px;
  height: 38px;
}
.brand-footer .brand-name {
  font-size: 1.375rem;
}
.brand-footer .brand-name > span {
  font-size: 0.625rem;
  letter-spacing: 6px;
}
.footer-top p {
  font-size: 0.875rem;
  color: #647c85;
}
.back-top {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 0.875rem;
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-block: 23px;
  display: flex;
  gap: 25px;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  color: #627b85;
}
.footer-bottom a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.mobile-contact {
  display: none;
}
@media (min-width: 1600px) {
  .hero-content {
    padding-top: 180px;
  }
  .hero-top,
  .hero-index {
    left: max(52px, calc((100vw - 1450px) /2));
  }
  .hero-top {
    right: max(52px, calc((100vw - 1450px) /2));
  }
}
@media (max-width: 1100px) {
  .header-inner {
    width: calc(100% - 64px);
  }
  .desktop-nav {
    gap: 19px;
    font-size: 0.875rem;
  }
  .section-wrap {
    width: calc(100% - 80px);
  }
  .hero-content {
    width: calc(100% - 80px);
    padding-top: 140px;
  }
  .hero {
    min-height: 640px;
  }
  .hero-top,
  .hero-index {
    left: 40px;
  }
  .hero-top {
    right: 40px;
  }
  .hero h1 {
    font-size: 3.375rem;
  }
  .quick-info {
    padding-inline: 40px;
    gap: 18px;
  }
  .quick-item {
    gap: 12px;
  }
  .quick-item:not(:first-child) {
    padding-left: 22px;
  }
  .quick-item strong {
    font-size: 0.875rem;
  }
  .quick-caption {
    font-size: 0.75rem;
  }
  .about {
    gap: 50px;
  }
  .contact-layout {
    gap: 45px;
  }
  .gallery-grid {
    grid-template-rows: 220px 220px;
  }
  .contact-copy h2 {
    font-size: 2.25rem;
  }
  .section-note {
    display: none;
  }
}
@media (max-width: 800px) {
  html {
    scroll-padding-top: 24px;
  }
  .desktop-nav {
    display: none;
  }
  .header-inner {
    height: 83px;
    width: calc(100% - 40px);
    gap: 15px;
  }
  .brand-symbol {
    width: 37px;
    height: 37px;
  }
  .brand-symbol svg {
    width: 25px;
  }
  .brand-name {
    font-size: 1.375rem;
  }
  .brand-name > span {
    font-size: 0.625rem;
    letter-spacing: 6px;
  }
  .header-contact {
    margin-left: auto;
    padding: 9px 15px;
    font-size: 0.875rem;
    gap: 14px;
  }
  .mobile-menu {
    display: block;
  }
  .mobile-menu summary {
    list-style: none;
    cursor: pointer;
    font-size: 0.875rem;
    padding: 10px 0 10px 8px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }
  .mobile-menu summary span {
    font-size: 1.375rem;
    line-height: 1;
    font-weight: 400;
  }
  .mobile-menu[open] summary span {
    transform: rotate(45deg);
  }
  .mobile-menu nav {
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 18px 24px 25px;
    border-top: 1px solid var(--border);
    box-shadow: 0 15px 20px #18363e15;
    display: grid;
    gap: 6px;
  }
  .mobile-menu nav a {
    padding: 9px 10px;
    font-size: 1rem;
  }
  .section-wrap {
    width: calc(100% - 48px);
  }
  .hero {
    min-height: 635px;
    height: calc(85svh - 83px);
    max-height: none;
  }
  .hero-top {
    left: 24px;
    right: 24px;
    top: 24px;
    font-size: 0.75rem;
    letter-spacing: 1px;
  }
  .hero-coordinate {
    display: none;
  }
  .hero-content {
    width: calc(100% - 48px);
    padding-top: 147px;
    padding-bottom: 110px;
  }
  .hero h1 {
    font-size: clamp(37px, 6.7vw, 53px);
    letter-spacing: -1px;
  }
  .hero-shade {
    background:
      linear-gradient(90deg, rgba(5, 24, 30, 0.73), rgba(5, 24, 30, 0.24)),
      linear-gradient(0deg, rgba(5, 24, 30, 0.6), transparent);
  }
  .hero-image {
    object-position: 60% 50%;
  }
  .hero-description {
    font-size: 1rem;
  }
  .hero-actions {
    gap: 23px;
  }
  .hero-index {
    left: 24px;
    bottom: 34px;
    font-size: 0.75rem;
  }
  .hero-discover {
    right: 24px;
    bottom: 23px;
  }
  .hero-discover > span:first-child {
    display: none;
  }
  .quick-info {
    padding: 24px;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
  }
  .quick-item {
    gap: 13px;
  }
  .quick-item:not(:first-child) {
    padding-left: 24px;
  }
  .quick-item:last-child {
    display: none;
  }
  .quick-item strong {
    font-size: 0.875rem;
  }
  .quick-caption {
    font-size: 0.75rem;
  }
  .rating-number {
    font-size: 2.125rem;
  }
  .quick-arrow {
    display: none;
  }
  .about {
    padding-block: 72px 65px;
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .about h2 {
    font-size: 2.0625rem;
    margin-top: 19px;
  }
  .about-copy {
    max-width: none;
  }
  .about-copy p {
    font-size: 1rem;
  }
  .services {
    padding-bottom: 64px;
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .service {
    padding: 26px 0 !important;
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 0 20px;
  }
  .service + .service {
    border-left: 0;
    border-top: 1px solid var(--border);
  }
  .service-top {
    grid-row: span 3;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
    margin: 4px 0 0;
  }
  .service h3 {
    font-size: 1.4375rem;
    margin-bottom: 7px;
  }
  .service p {
    font-size: 1rem;
  }
  .service-english {
    margin-top: 17px;
  }
  .desktop-break {
    display: none;
  }
  .section-heading {
    align-items: flex-start;
    gap: 22px;
    flex-direction: column;
    margin-bottom: 29px;
  }
  .section-heading h2 {
    font-size: 1.8125rem;
  }
  .gallery-section {
    padding-block: 63px 44px;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 380px 230px;
    gap: 12px;
  }
  .gallery-large {
    grid-column: span 2;
    grid-row: auto;
  }
  .gallery-grid figcaption {
    padding: 35px 14px 15px;
    font-size: 0.875rem;
  }
  .photo-credit {
    font-size: 0.75rem;
    text-align: left;
  }
  .contact-section {
    padding-block: 65px;
  }
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .contact-copy h2 {
    font-size: 2.3125rem;
  }
  .contact-intro {
    font-size: 1rem;
  }
  .contact-details > div {
    font-size: 1rem;
  }
  .contact-details > a {
    font-size: 1.5rem;
  }
  .map-panel {
    min-height: 400px;
  }
  .footer-top {
    flex-wrap: wrap;
    padding-block: 35px;
    gap: 23px;
  }
  .footer-top p {
    order: 3;
    width: 100%;
    font-size: 0.875rem;
  }
  .back-top {
    font-size: 0.875rem;
  }
  .footer-bottom {
    font-size: 0.75rem;
    flex-wrap: wrap;
    gap: 12px;
    padding-block: 20px 26px;
  }
  .footer-bottom > span:nth-child(2) {
    order: 3;
    width: 100%;
  }
  .site-footer {
    padding-bottom: 62px;
  }
  .mobile-contact {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    z-index: 30;
    box-shadow: 0 -2px 20px #102d3612;
    padding-bottom: env(safe-area-inset-bottom);
  }
  .mobile-contact > a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    flex: 1;
    height: 60px;
    font-size: 0.875rem;
  }
  .mobile-contact > a + a {
    border-left: 1px solid var(--border);
  }
  .mobile-contact > a:nth-child(2) {
    background: var(--primary);
    color: #fff;
  }
}
@media (max-width: 420px) {
  .header-contact {
    display: none;
  }
  .mobile-menu {
    margin-left: auto;
  }
  .hero h1 {
    font-size: 2.3125rem;
  }
  .hero-content {
    padding-top: 140px;
  }
  .hero-description {
    font-size: 1rem;
  }
  .hero-actions {
    gap: 20px;
  }
  .hero-actions .button {
    padding-inline: 18px;
    gap: 20px;
  }
  .hero-map {
    font-size: 0.875rem;
  }
  .quick-info {
    gap: 13px;
    padding-inline: 20px;
  }
  .quick-item {
    gap: 9px;
  }
  .quick-item:not(:first-child) {
    padding-left: 13px;
  }
  .quick-caption {
    font-size: 0.75rem;
  }
  .quick-item strong {
    font-size: 0.875rem;
  }
  .quick-item > svg {
    width: 20px;
    flex-shrink: 0;
  }
  .rating-number {
    font-size: 1.9375rem;
  }
  .stars svg {
    width: 11px;
  }
  .gallery-grid {
    grid-template-rows: 290px 200px;
  }
  .gallery-grid figcaption {
    font-size: 0.75rem;
    padding-inline: 11px;
  }
  .contact-actions {
    gap: 23px;
  }
  .contact-actions .button {
    padding-inline: 19px;
  }
  .about h2 {
    font-size: 1.875rem;
  }
  .eyebrow {
    font-size: 0.75rem;
    letter-spacing: 1.8px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}
@media (max-width: 420px) {
  .hero-actions {
    flex-wrap: wrap;
  }
  .hero-top {
    flex-wrap: wrap;
  }
  .quick-info {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .quick-item > span {
    min-width: 0;
  }
  .rating-number {
    flex-shrink: 0;
  }
  .service {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 0 15px;
  }
  .contact-actions .button {
    max-width: 100%;
  }
  .footer-top {
    column-gap: 12px;
  }
}

/* The supplied transparent logo is shown intact; only empty canvas padding is clipped. */
.official-logo {
  position: relative;
  display: block;
  width: 130px;
  height: 132px;
  overflow: hidden;
  background: transparent;
  flex-shrink: 0;
}
.official-logo img {
  position: absolute;
  width: 250px;
  height: 250px;
  max-width: none;
  left: -60px;
  top: -43px;
}
.site-header .header-inner {
  height: 138px;
}
.brand-footer .official-logo {
  width: 110px;
  height: 112px;
}
.brand-footer .official-logo img {
  width: 214px;
  height: 214px;
  left: -53px;
  top: -38px;
}
.hero {
  max-height: none;
}
@media (max-width: 800px) {
  .site-header .header-inner {
    height: 124px;
  }
  .site-header .official-logo {
    width: 110px;
    height: 112px;
  }
  .site-header .official-logo img {
    width: 214px;
    height: 214px;
    left: -53px;
    top: -38px;
  }
  .mobile-menu nav {
    top: 123px;
  }
}
