:root {
  --ink: #1e1e1c;
  --body: #4e4a45;
  --muted: #817b72;
  --line: #dedfdd;
  --paper: #f4f5f4;
  --panel: #fcfcfb;
  --panel-soft: #f7f7f6;
  --panel-tint: #f0f1ef;
  --white: #ffffff;
  --deep: #222723;
  --green: #3e5549;
  --gold: #b89558;
  --clay: #8e5a3e;
  --shadow: 0 18px 54px rgba(26, 25, 22, 0.12);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 10%, rgba(30, 30, 28, 0.035), transparent 28%),
    radial-gradient(circle at 88% 20%, rgba(184, 149, 88, 0.045), transparent 24%),
    linear-gradient(135deg, #fafafa 0%, #f3f4f3 48%, #ffffff 100%);
  font-family: "Noto Sans JP", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Microsoft YaHei", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.85;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(90deg, rgba(32, 32, 30, 0.018) 1px, transparent 1px),
    linear-gradient(0deg, rgba(32, 32, 30, 0.014) 1px, transparent 1px),
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.64), transparent 42%);
  background-size: 42px 42px, 42px 42px, 100% 100%;
  content: "";
}

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

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

.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  display: grid;
  grid-template-columns: minmax(230px, 1fr) auto auto;
  gap: 24px;
  align-items: center;
  padding: 14px clamp(20px, 5vw, 72px);
  color: var(--white);
  background: rgba(30, 32, 29, 0.86);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

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

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  flex: 0 0 40px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  overflow: hidden;
}

.brand-mark img {
  width: 34px;
  height: 34px;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: "Noto Serif JP", serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
}

.brand small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
}

.main-nav,
.lang-switch,
.hero-actions,
.hero-facts,
.service-grid,
.news-list,
.site-footer {
  display: flex;
}

.main-nav {
  gap: 24px;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
}

.main-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.78);
  transition: color 360ms var(--ease);
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 420ms var(--ease);
}

.main-nav a:hover {
  color: var(--white);
}

.main-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.lang-switch {
  gap: 4px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 7px;
}

.lang-switch button {
  min-width: 50px;
  min-height: 32px;
  padding: 6px 9px;
  color: var(--white);
  background: transparent;
  border: 0;
  border-radius: 5px;
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 600;
  transition: background 280ms var(--ease), color 280ms var(--ease);
}

.lang-switch button.active {
  color: var(--deep);
  background: var(--white);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 38px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  grid-column: 1;
  grid-row: 1;
  background: var(--white);
  border-radius: 999px;
  transition: transform 260ms var(--ease), opacity 260ms var(--ease);
}

.menu-toggle span:nth-child(1) {
  transform: translateY(-6px);
}

.menu-toggle span:nth-child(3) {
  transform: translateY(6px);
}

.site-header.menu-open .menu-toggle span:nth-child(1) {
  transform: rotate(45deg);
}

.site-header.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.menu-open .menu-toggle span:nth-child(3) {
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 118px clamp(20px, 5vw, 72px) 44px;
  color: var(--white);
  background: var(--deep);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  transform: scale(1.04);
  animation: heroDrift 18s var(--ease) forwards;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(18, 20, 18, 0.86), rgba(18, 20, 18, 0.54) 48%, rgba(18, 20, 18, 0.18)),
    linear-gradient(0deg, rgba(18, 20, 18, 0.6), rgba(18, 20, 18, 0.02) 52%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding-bottom: 78px;
  animation: heroCopyIn 900ms var(--ease) both;
}

.eyebrow,
.section-title span,
.service-card span {
  display: inline-block;
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero h1,
.section-title h2 {
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  line-height: 1.28;
}

.hero h1 {
  max-width: 720px;
  font-size: 48px;
}

.hero-lead {
  max-width: 690px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 16px;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.primary-action,
.secondary-action {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 9px 18px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  transition: transform 320ms var(--ease), box-shadow 320ms var(--ease), background 320ms var(--ease);
}

.primary-action {
  color: var(--white);
  background: var(--clay);
}

.secondary-action {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.42);
}

.primary-action:hover,
.secondary-action:hover {
  transform: translateY(-2px);
}

.hero-facts {
  position: relative;
  z-index: 3;
  width: min(840px, 100%);
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  border-radius: 4px;
  box-shadow: var(--shadow);
}

.hero-facts div {
  flex: 1 1 0;
  padding: 18px 22px;
  border-right: 1px solid var(--line);
}

.hero-facts div:last-child {
  border-right: 0;
}

.hero-facts strong,
.hero-facts span,
.company-table span,
.company-table strong {
  display: block;
}

.hero-facts strong {
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  font-weight: 600;
}

.hero-facts span {
  color: var(--muted);
  font-size: 12px;
}

section {
  position: relative;
  padding: 86px clamp(20px, 5vw, 72px);
}

.intro-section,
.about-section,
.access-section,
.spots-section {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(246, 247, 246, 0.94)),
    repeating-linear-gradient(135deg, rgba(30, 30, 28, 0.016) 0 1px, transparent 1px 18px);
}

.service-section,
.news-section {
  background:
    radial-gradient(circle at 8% 18%, rgba(30, 30, 28, 0.03), transparent 28%),
    linear-gradient(135deg, #f2f3f2 0%, #fbfbfa 58%, #f5f6f5 100%);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(320px, 1fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: start;
}

.section-title {
  max-width: 880px;
  margin-bottom: 34px;
}

.section-title.compact {
  margin-bottom: 22px;
}

.section-title h2 {
  max-width: 780px;
  color: var(--ink);
  font-size: 34px;
}

.section-title p,
.intro-copy p,
.about-copy p {
  max-width: 760px;
  margin: 16px 0 0;
  color: var(--body);
  font-size: 15px;
}

.service-grid {
  flex-wrap: wrap;
  gap: 22px;
}

.service-card {
  flex: 1 1 310px;
  min-width: 0;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(26, 25, 22, 0.05);
  transition: transform 520ms var(--ease), box-shadow 520ms var(--ease), border-color 520ms var(--ease);
}

.service-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 900ms var(--ease);
}

.service-card div {
  padding: 24px 24px 26px;
}

.service-card h3 {
  margin: 0 0 10px;
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.35;
}

.service-card p {
  margin: 0;
  color: var(--body);
  font-size: 14px;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(184, 149, 88, 0.38);
  box-shadow: 0 22px 54px rgba(26, 25, 22, 0.12);
}

.service-card:hover img {
  transform: scale(1.035);
}

.spots-section {
  padding-top: 86px;
  padding-bottom: 86px;
  background:
    radial-gradient(circle at 14% 12%, rgba(30, 30, 28, 0.025), transparent 28%),
    linear-gradient(180deg, rgba(250, 250, 249, 0.98), rgba(255, 255, 255, 0.99)),
    repeating-linear-gradient(135deg, rgba(30, 30, 28, 0.014) 0 1px, transparent 1px 22px);
}

.spots-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.spots-grid article {
  position: relative;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  background: rgba(252, 252, 251, 0.92);
  border: 1px solid rgba(160, 160, 154, 0.28);
  border-radius: 6px;
  box-shadow: 0 18px 46px rgba(35, 42, 36, 0.08);
  transition: transform 360ms var(--ease), box-shadow 360ms var(--ease), border-color 360ms var(--ease);
}

.spots-grid article::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  z-index: 1;
  background: linear-gradient(90deg, var(--gold), rgba(92, 92, 86, 0.32));
  content: "";
}

.spots-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 820ms var(--ease);
}

.spots-grid article:hover {
  border-color: rgba(184, 149, 88, 0.58);
  box-shadow: 0 24px 58px rgba(35, 42, 36, 0.13);
  transform: translateY(-4px);
}

.spots-grid article:hover img {
  transform: scale(1.035);
}

.spots-grid span {
  display: inline-block;
  margin: 22px 24px 20px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
}

.spots-grid h3 {
  margin: 0 24px 12px;
  font-family: "Noto Serif JP", serif;
  font-size: 21px;
  font-weight: 600;
  line-height: 1.45;
}

.spots-grid p {
  margin: 0 24px 26px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}

.spots-message {
  max-width: 780px;
  margin: 30px auto 0;
  color: var(--body);
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  line-height: 1.9;
  text-align: center;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.85fr) minmax(360px, 1fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
}

.villa-photo {
  margin: 0;
  overflow: hidden;
  background: var(--panel);
  border-radius: 4px;
  box-shadow: var(--shadow);
}

.villa-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 900ms var(--ease);
}

.villa-photo:hover img {
  transform: scale(1.03);
}

.villa-photo figcaption {
  padding: 12px 14px;
  color: var(--muted);
  border: 1px solid var(--line);
  border-top: 0;
  font-size: 12px;
}

.company-table {
  position: relative;
  margin-top: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(246, 247, 246, 0.94)),
    repeating-linear-gradient(135deg, rgba(30, 30, 28, 0.015) 0 1px, transparent 1px 16px);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 16px 42px rgba(35, 42, 36, 0.07);
}

.company-table div {
  display: grid;
  grid-template-columns: 126px minmax(0, 1fr);
  gap: 20px;
  padding: 17px 20px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.62);
}

.company-table div:nth-child(even) {
  background: rgba(246, 246, 244, 0.68);
}

.company-table div:last-child {
  border-bottom: 0;
}

.company-table span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.company-table strong {
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
}

.company-table a {
  color: var(--green);
}

.news-list {
  flex-direction: column;
  gap: 12px;
  background: transparent;
}

.news-list article {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 20px 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(246, 247, 246, 0.92));
  border: 1px solid rgba(160, 160, 154, 0.24);
  border-radius: 6px;
  box-shadow: 0 16px 38px rgba(35, 42, 36, 0.07);
  transition: transform 320ms var(--ease), box-shadow 320ms var(--ease), border-color 320ms var(--ease);
}

.news-list article:last-child {
  border-bottom: 1px solid rgba(160, 160, 154, 0.24);
}

.news-list article:hover {
  border-color: rgba(184, 149, 88, 0.52);
  box-shadow: 0 20px 46px rgba(35, 42, 36, 0.11);
  transform: translateY(-2px);
}

.news-list time {
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
}

.news-list a {
  color: var(--body);
  font-size: 14px;
  transition: color 300ms var(--ease);
}

.news-list a:hover {
  color: var(--green);
}

.map-wrap {
  min-height: 430px;
  overflow: hidden;
  background: var(--panel-soft);
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: 0 14px 40px rgba(26, 25, 22, 0.08);
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 430px;
  border: 0;
}

.sub-hero {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 130px clamp(20px, 5vw, 72px) 76px;
  color: var(--white);
  background: var(--deep);
}

.sub-hero-image,
.sub-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.sub-hero-image {
  object-fit: cover;
  transform: scale(1.03);
  animation: heroDrift 16s var(--ease) forwards;
}

.sub-hero-shade {
  background:
    linear-gradient(90deg, rgba(18, 20, 18, 0.86), rgba(18, 20, 18, 0.58) 48%, rgba(18, 20, 18, 0.28)),
    linear-gradient(0deg, rgba(18, 20, 18, 0.52), rgba(18, 20, 18, 0.08));
}

.sub-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
  animation: heroCopyIn 900ms var(--ease) both;
}

.sub-hero-inner span,
.sub-heading span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.sub-hero-inner h1,
.sub-heading h2,
.article-detail h2 {
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  line-height: 1.28;
}

.sub-hero-inner h1 {
  font-size: 42px;
}

.sub-hero-inner p {
  max-width: 620px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
}

.sub-content {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.97), rgba(246, 247, 246, 0.94)),
    repeating-linear-gradient(135deg, rgba(30, 30, 28, 0.014) 0 1px, transparent 1px 20px);
}

.sub-heading {
  margin-bottom: 28px;
}

.sub-heading h2 {
  font-size: 30px;
}

.article-list {
  display: grid;
  gap: 14px;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.article-list article {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 24px;
  padding: 22px 26px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(247, 247, 246, 0.92));
  border: 1px solid rgba(160, 160, 154, 0.25);
  border-radius: 6px;
  box-shadow: 0 16px 42px rgba(35, 42, 36, 0.07);
  transition: transform 320ms var(--ease), box-shadow 320ms var(--ease), border-color 320ms var(--ease);
}

.article-list article:last-child {
  border-bottom: 1px solid rgba(160, 160, 154, 0.25);
}

.article-list article:hover {
  border-color: rgba(184, 149, 88, 0.52);
  box-shadow: 0 22px 52px rgba(35, 42, 36, 0.12);
  transform: translateY(-2px);
}

.article-list time,
.article-detail time {
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
}

.article-list h3 {
  margin: 0 0 10px;
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.55;
}

.article-list h3 a {
  transition: color 300ms var(--ease);
}

.article-list h3 a:hover {
  color: var(--green);
}

.article-list p {
  margin: 0;
  color: var(--body);
  font-size: 14px;
}

.article-detail {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 56px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(247, 247, 246, 0.94));
  border: 1px solid var(--line);
  border-radius: 6px;
}

.article-detail header {
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.article-detail h2 {
  margin-top: 10px;
  font-size: 30px;
}

.article-body {
  padding-top: 28px;
  color: var(--body);
  font-size: 15px;
}

.article-body p {
  margin: 0 0 16px;
}

.article-body img {
  height: auto !important;
  max-width: 100% !important;
  margin: 24px 0;
  border-radius: 4px;
}

.back-link {
  display: inline-flex;
  margin-top: 22px;
  color: var(--green);
  font-weight: 700;
}

.pagebar {
  margin-top: 28px;
}

.pagebar .pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
}

.pagebar a,
.pagebar span {
  display: inline-flex;
  min-width: 34px;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  color: var(--body);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 4px;
  font-size: 12px;
}

.pagebar a.page-num-current,
.pagebar a:hover {
  color: var(--white);
  background: var(--green);
  border-color: var(--green);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.96fr) minmax(380px, 1.04fr);
  gap: clamp(24px, 3vw, 36px);
  align-items: stretch;
}

.contact-info {
  display: grid;
  gap: 18px;
  align-content: start;
}

.contact-info-card,
.contact-note-card,
.contact-form-panel {
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: 0 14px 40px rgba(26, 25, 22, 0.06);
}

.contact-info-card {
  padding: clamp(24px, 4vw, 40px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(247, 247, 246, 0.94)),
    repeating-linear-gradient(135deg, rgba(30, 30, 28, 0.014) 0 1px, transparent 1px 18px);
}

.contact-info p {
  margin: 0;
  color: var(--body);
}

.contact-table {
  margin-top: 24px;
}

.contact-info-card .sub-heading {
  margin-bottom: 18px;
}

.contact-note-card {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(252, 252, 251, 0.96), rgba(244, 244, 242, 0.94));
}

.contact-note-card img {
  width: 100%;
  height: 100%;
  min-height: 178px;
  object-fit: cover;
}

.contact-note-card div {
  padding: 20px 22px;
}

.contact-note-card span {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
}

.contact-note-card strong {
  display: block;
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.45;
}

.contact-note-card p {
  margin-top: 10px;
  font-size: 13px;
}

.contact-form-panel {
  padding: clamp(24px, 4vw, 40px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(247, 247, 246, 0.94)),
    repeating-linear-gradient(135deg, rgba(30, 30, 28, 0.014) 0 1px, transparent 1px 18px);
}

.contact-form-panel form {
  display: grid;
  gap: 16px;
}

.contact-form-panel label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.contact-form-panel input,
.contact-form-panel textarea {
  width: 100%;
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 13px 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
  font: inherit;
  font-size: 14px;
  outline: none;
  transition: border-color 260ms var(--ease), box-shadow 260ms var(--ease);
}

.contact-form-panel textarea {
  resize: vertical;
}

.contact-form-panel input:focus,
.contact-form-panel textarea:focus {
  border-color: rgba(184, 149, 88, 0.72);
  box-shadow: 0 0 0 3px rgba(184, 149, 88, 0.14);
}

.contact-form-panel button {
  min-height: 44px;
  border: 0;
  border-radius: 4px;
  color: var(--white);
  background: var(--clay);
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  transition: transform 320ms var(--ease), box-shadow 320ms var(--ease);
}

.contact-form-panel button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(142, 90, 62, 0.24);
}

.contact-map {
  margin-top: 36px;
}

.site-footer {
  justify-content: center;
  gap: 0;
  padding: 18px clamp(20px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.72);
  background: var(--deep);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 760ms var(--ease), transform 760ms var(--ease);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroDrift {
  from { transform: scale(1.04); }
  to { transform: scale(1); }
}

@keyframes heroCopyIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1060px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px 16px;
  }

  .main-nav {
    grid-column: 1 / -1;
    order: 3;
    flex-wrap: wrap;
    gap: 12px 20px;
    overflow: visible;
    padding-bottom: 0;
  }

  .lang-switch {
    justify-self: end;
  }

  .intro-grid,
  .about-layout {
    grid-template-columns: 1fr;
  }

  .spots-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  body {
    font-size: 14px;
  }

  .site-header {
    position: absolute;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 10px 8px;
    padding: 11px 14px;
  }

  .menu-toggle {
    display: grid;
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
  }

  .brand {
    gap: 9px;
    min-width: 0;
  }

  .brand > span:last-child {
    min-width: 0;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
    font-size: 13px;
  }

  .brand strong {
    max-width: min(38vw, 168px);
    overflow: hidden;
    font-size: 12px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .brand small {
    max-width: min(38vw, 168px);
    overflow: hidden;
    font-size: 10px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .main-nav {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding: 12px 0 2px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    justify-content: flex-start;
    gap: 0;
    font-size: 12px;
    line-height: 1.2;
  }

  .main-nav a {
    display: flex;
    min-height: 40px;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    color: rgba(255, 255, 255, 0.86);
  }

  .main-nav a::after {
    position: static;
    width: 6px;
    height: 6px;
    border-top: 1px solid currentColor;
    border-right: 1px solid currentColor;
    background: transparent;
    opacity: 0.55;
    transform: rotate(45deg);
  }

  .site-header.menu-open .main-nav {
    display: flex;
  }

  .site-header .lang-switch {
    display: flex;
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    margin-top: 0;
  }

  .lang-switch button {
    min-width: auto;
    min-height: 28px;
    padding: 5px 7px;
    font-size: 11px;
  }

  .hero {
    min-height: auto;
    padding: 232px 18px 32px;
  }

  .hero-inner {
    padding-bottom: 30px;
  }

  .hero h1 {
    font-size: 31px;
  }

  .hero-lead {
    font-size: 14px;
  }

  .hero-facts {
    flex-direction: column;
  }

  .hero-facts div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-facts div:last-child {
    border-bottom: 0;
  }

  section {
    padding: 62px 18px;
  }

  .section-title h2 {
    font-size: 25px;
  }

  .service-card div {
    padding: 21px;
  }

  .service-card h3 {
    font-size: 18px;
  }

  .spots-section {
    padding-top: 62px;
    padding-bottom: 62px;
  }

  .spots-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .spots-grid article {
    min-height: auto;
    padding: 0;
  }

  .spots-grid span {
    margin: 18px 20px 14px;
  }

  .spots-grid h3 {
    margin-right: 20px;
    margin-left: 20px;
    font-size: 19px;
  }

  .spots-grid p {
    margin-right: 20px;
    margin-left: 20px;
  }

  .spots-message {
    font-size: 16px;
    text-align: left;
  }

  .company-table div,
  .news-list article,
  .article-list article {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .sub-hero {
    min-height: auto;
    padding: 210px 18px 58px;
  }

  .sub-hero-inner h1 {
    font-size: 30px;
  }

  .sub-heading h2,
  .article-detail h2 {
    font-size: 24px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-note-card {
    grid-template-columns: 1fr;
    display: block;
  }

  .contact-note-card img {
    display: block;
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .contact-note-card div {
    padding: 18px 20px 20px;
  }

  .contact-note-card strong,
  .contact-note-card p {
    overflow-wrap: anywhere;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 430px) {
  .brand small {
    display: none;
  }

  .main-nav {
    justify-content: flex-start;
    gap: 0;
  }

  .lang-switch {
    gap: 2px;
    padding: 3px;
  }

  .lang-switch button {
    padding: 5px 7px;
  }
}
