/*
Theme Name: Aspire Sathorn–Taksin
Theme URI: https://aspire242.vercel.app/
Author: Aspire Sathorn–Taksin
Description: Custom single-listing WordPress theme converted from the original static condo-rental landing page (aspire242). Editable via a plain wp-admin Theme Options page and three small content types (gallery, FAQ, area info) — no page builder or premium plugin required. Blog articles use native WordPress posts.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
Tested up to: 6.6
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: aspire-sathorn-taksin
*/

:root {
  --font-thai: "IBM Plex Sans Thai", "Thonburi", "Tahoma", sans-serif;
  --cream: #f7f1ea;
  --sand: #ddaf8a;
  --terracotta: #b96f46;
  --taupe: #94877a;
  --mauve: #927c74;
  --ink: #382d28;
  --white: #fffdfa;
  --line: rgba(56, 45, 40, 0.15);
  --shadow: 0 24px 70px rgba(74, 48, 34, 0.13);
  --radius: 28px;
  --max: 1240px;
  --font-size-base: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-thai);
  font-size: var(--font-size-base);
  line-height: 1.7;
}

body.no-scroll {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

button {
  color: inherit;
  font: inherit;
}

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

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 36px;
  min-height: 84px;
  padding: 14px max(24px, calc((100vw - var(--max)) / 2));
  background: rgba(247, 241, 234, 0.9);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: 0.25s ease;
}

.site-header.scrolled {
  min-height: 70px;
  border-bottom-color: var(--line);
  box-shadow: 0 8px 32px rgba(56, 45, 40, 0.07);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  line-height: 1.05;
}

.brand-mark {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  background: var(--terracotta);
  border-radius: 50% 50% 50% 14%;
  color: white;
  font-family: var(--font-thai);
  font-size: 22px;
}

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

.brand strong {
  font-family: var(--font-thai);
  font-size: 20px;
  font-weight: 500;
}

.brand small {
  margin-top: 5px;
  color: var(--taupe);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(20px, 3vw, 25px);
}

.main-nav a {
  position: relative;
  color: var(--mauve);
  font-size: 16px;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 1px;
  background: var(--terracotta);
  content: "";
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 12px 23px;
  background: var(--terracotta);
  border-radius: 999px;
  color: white;
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease;
}

.header-cta-line {
  background: #4d8f58;
}

.header-cta:hover {
  background: #a75f39;
  transform: translateY(-2px);
}

.header-cta-line:hover {
  background: #3f7c49;
}

.menu-button {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: clamp(38px, 6vw, 88px);
  align-items: center;
  width: min(var(--max), calc(100% - 48px));
  min-height: calc(100vh - 84px);
  margin: 0 auto;
  padding: 56px 0 86px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--terracotta);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.hero h1,
.section h2,
.location-card h2,
.contact-section h2 {
  margin: 0;
  font-family: var(--font-thai);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.hero h1 {
  font-size: clamp(52px, 6.3vw, 94px);
}

.hero h1 span {
  display: block;
  color: var(--terracotta);
  font-size: 0.72em;
  font-style: italic;
}

.hero-lead {
  max-width: 560px;
  margin: 30px 0 32px;
  color: var(--mauve);
  font-size: clamp(17px, 1.7vw, 21px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 12px 25px;
  border: 1px solid var(--terracotta);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  box-shadow: 0 12px 30px rgba(185, 111, 70, 0.2);
  transform: translateY(-2px);
}

.button-primary {
  background: var(--terracotta);
  color: white;
}

.button-ghost {
  color: var(--terracotta);
}

.hero-facts {
  display: flex;
  gap: 0;
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
}

.hero-facts li {
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding: 0 23px;
  border-left: 1px solid var(--line);
}

.hero-facts li:first-child {
  padding-left: 0;
  border-left: 0;
}

.hero-facts strong {
  font-family: var(--font-thai);
  font-size: 30px;
  font-weight: 500;
}

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

.hero-visual {
  position: relative;
  padding: 0 18px 35px 0;
}

.hero-image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 4.45;
  border-radius: 180px 180px 28px 28px;
  box-shadow: var(--shadow);
}

.hero-image-wrap::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(56, 45, 40, 0.18));
  content: "";
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.availability-card,
.price-tag {
  position: absolute;
  z-index: 2;
  display: flex;
  background: rgba(255, 253, 250, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.availability-card {
  top: 8%;
  left: -45px;
  align-items: center;
  gap: 11px;
  padding: 15px 20px;
  border-radius: 15px;
}

.status-dot {
  width: 10px;
  height: 10px;
  background: #738c64;
  border: 3px solid #dfe7d9;
  border-radius: 50%;
  box-sizing: content-box;
}

.availability-card small,
.availability-card strong,
.price-tag small,
.price-tag span {
  display: block;
}

.availability-card small {
  color: var(--taupe);
  font-size: 10px;
}

.availability-card strong {
  font-size: 14px;
}

.price-tag {
  right: -16px;
  bottom: 0;
  min-width: 185px;
  flex-direction: column;
  padding: 18px 24px;
  background: var(--sand);
  border-radius: 22px 5px 22px 22px;
}

.price-tag small {
  color: #6f4934;
  font-size: 11px;
}

.price-tag strong {
  font-family: var(--font-thai);
  font-size: 36px;
  font-weight: 500;
  line-height: 1.1;
}

.price-tag span {
  color: #6f4934;
  font-size: 11px;
}

.section {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 120px 0;
}

.section-label {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  color: var(--taupe);
  font-size: 11px;
  letter-spacing: 0.16em;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(50px, 10vw, 150px);
  padding-top: 65px;
}

.intro h2,
.gallery-heading h2,
.terms-section h2 {
  font-size: clamp(44px, 5vw, 72px);
}

.intro-copy {
  padding-top: 14px;
}

.intro-copy p {
  margin: 0 0 26px;
  color: var(--mauve);
  font-size: 22px;
}

.intro-copy p:first-child::first-letter {
  float: left;
  padding: 0 10px 0 0;
  color: var(--terracotta);
  font-family: var(--font-thai);
  font-size: 68px;
  line-height: 0.9;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(1400px, calc(100% - 32px));
  margin: 0 auto;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.feature-card {
  position: relative;
  min-height: 340px;
  padding: 34px 30px;
  border-left: 1px solid var(--line);
}

.feature-card:first-child {
  border-left: 0;
}

.feature-number {
  color: var(--taupe);
  font-size: 36px;
}

.feature-icon {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  margin: 58px 0 30px;
  background: var(--cream);
  border-radius: 50% 50% 50% 15px;
  color: var(--terracotta);
  font-family: var(--font-thai);
  font-size: 22px;
}

.feature-card:nth-child(2) .feature-icon {
  background: #f0ddd0;
}

.feature-card:nth-child(3) .feature-icon {
  background: #e9e2dc;
}

.feature-card:nth-child(4) .feature-icon {
  background: #e5d9d3;
}

.feature-card-service {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: auto 56px minmax(260px, 0.8fr) 1fr;
  gap: 24px;
  align-items: center;
  min-height: 0;
  border-top: 1px solid var(--line);
  border-left: 0;
}

.feature-card-service .feature-icon {
  margin: 0;
  background: #ead6c8;
}

.feature-card-service h3,
.feature-card-service p {
  margin: 0;
}

.feature-card h3 {
  margin: 0 0 12px;
  font-family: var(--font-thai);
  font-size: 23px;
  font-weight: 500;
}

.feature-card p {
  margin: 0;
  color: var(--taupe);
  font-size: 16px;
}

.gallery-heading {
  display: grid;
  grid-template-columns: 1fr 0.65fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 50px;
}

.gallery-heading > p {
  margin: 0 0 10px;
  color: var(--mauve);
}

.gallery-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -14px 0 24px;
}

.gallery-tab {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 11px 18px;
  color: var(--mauve);
  font-family: var(--font-thai);
  font-size: 15px;
  background: transparent;
  border: 1px solid rgba(146, 124, 116, 0.32);
  border-radius: 999px;
  cursor: pointer;
  transition:
    color 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.gallery-tab:hover {
  border-color: var(--terracotta);
  transform: translateY(-1px);
}

.gallery-tab.active {
  color: white;
  background: var(--terracotta);
  border-color: var(--terracotta);
}

.gallery-tab span {
  display: grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  color: inherit;
  font-size: 11px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 999px;
}

.gallery-tab:not(.active) span {
  background: rgba(146, 124, 116, 0.1);
}

.gallery-sample-note {
  margin: -10px 0 20px;
  color: var(--mauve);
  font-size: 13px;
}

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

.gallery-item[hidden],
.gallery-sample-note[hidden] {
  display: none !important;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  padding: 0;
  background: #e6ddd5;
  border: 0;
  border-radius: 18px;
  cursor: zoom-in;
}

.gallery-item::after {
  position: absolute;
  inset: 55% 0 0;
  background: linear-gradient(transparent, rgba(56, 45, 40, 0.62));
  content: "";
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.035);
}

.gallery-item span {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 14px;
  left: 18px;
  color: white;
  font-family: var(--font-thai);
  font-size: 16px;
  text-align: left;
}

.gallery-wide {
  grid-column: span 2;
}

.gallery-tall {
  grid-row: span 2;
}

.location-section {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  width: min(1400px, calc(100% - 32px));
  height: 310px;
  margin: 20px auto 0;
  overflow: hidden;
  background: var(--sand);
  border-radius: var(--radius);
}

.location-card {
  align-self: center;
  padding: clamp(18px, 2vw, 22px) clamp(24px, 4vw, 56px);
}

.location-card .eyebrow {
  margin-bottom: 10px;
}

.location-card h2 {
  font-size: clamp(32px, 3.2vw, 42px);
}

.location-card > p:not(.eyebrow) {
  max-width: 500px;
  margin: 10px 0 0;
  color: #705647;
  font-size: 14px;
  line-height: 1.5;
}

.location-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.location-pills span {
  padding: 8px 14px;
  border: 1px solid rgba(111, 73, 52, 0.28);
  border-radius: 999px;
  color: #6f4934;
  font-size: 12px;
}

.location-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 310px;
  object-fit: cover;
  background: #2d2926;
}

.area-info-section {
  padding-top: clamp(90px, 10vw, 140px);
}

.area-info-heading {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: clamp(40px, 9vw, 120px);
  align-items: end;
  margin-bottom: 52px;
}

.area-info-heading h2 {
  margin-bottom: 0;
}

.area-info-intro {
  padding-bottom: 8px;
}

.area-info-intro p {
  margin: 0 0 22px;
  color: var(--mauve);
}

.map-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: var(--terracotta);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}

.map-link span {
  transition: transform 0.25s ease;
}

.map-link:hover span {
  transform: translate(2px, -2px);
}

.area-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.area-card {
  padding: clamp(26px, 4vw, 42px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.area-card-header {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-bottom: 28px;
}

.area-card-number {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  place-items: center;
  color: var(--terracotta);
  font-size: 12px;
  background: var(--cream);
  border-radius: 50%;
}

.area-card-header p {
  margin: 0 0 2px;
  color: var(--terracotta);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
}

.area-card h3 {
  margin: 0;
  font-family: var(--font-thai);
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 500;
}

.area-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.area-list li {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  min-height: 52px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.area-list li > span {
  color: #5f514b;
  font-size: 15px;
}

.area-list strong {
  flex: 0 0 auto;
  padding: 6px 10px;
  color: var(--terracotta);
  font-size: 12px;
  font-weight: 500;
  background: rgba(221, 175, 138, 0.2);
  border-radius: 999px;
  white-space: nowrap;
}

.area-info-note {
  margin: 20px 4px 0;
  color: var(--taupe);
  font-size: 12px;
}

.blog-preview-section {
  padding-top: clamp(90px, 10vw, 140px);
}

.blog-preview-heading {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: clamp(40px, 9vw, 120px);
  align-items: end;
  margin-bottom: 52px;
}

.blog-preview-heading h2 {
  margin-bottom: 0;
}

.blog-preview-intro p {
  margin: 0 0 22px;
  color: var(--mauve);
}

.blog-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.blog-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.blog-card a {
  display: block;
  color: inherit;
}

.blog-card-image {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: #e6ddd5;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.04);
}

.blog-card-body {
  padding: 26px 28px 30px;
}

.blog-card-tag {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 12px;
  background: rgba(221, 175, 138, 0.2);
  border-radius: 999px;
  color: var(--terracotta);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.blog-card h3 {
  margin: 0 0 12px;
  font-family: var(--font-thai);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
}

.blog-card-body > p {
  margin: 0 0 18px;
  color: var(--taupe);
  font-size: 15px;
  line-height: 1.6;
}

.blog-card-more {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--terracotta);
  font-size: 14px;
  font-weight: 600;
}

.blog-card-more i {
  font-style: normal;
  transition: transform 0.25s ease;
}

.blog-card:hover .blog-card-more i {
  transform: translate(2px, -2px);
}

.blog-index-hero {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 70px 0 10px;
}

.blog-index-hero .eyebrow {
  margin-bottom: 14px;
}

.blog-index-hero h1 {
  margin: 0 0 16px;
  font-family: var(--font-thai);
  font-weight: 500;
  font-size: clamp(38px, 6vw, 60px);
  letter-spacing: -0.03em;
  line-height: 1.12;
}

.blog-index-hero p {
  max-width: 640px;
  margin: 0;
  color: var(--mauve);
  font-size: 18px;
}

.blog-index-note {
  margin: 40px 4px 0;
  color: var(--taupe);
  font-size: 13px;
  text-align: center;
}

.article-page {
  max-width: 760px;
}

.article-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 26px;
}

.article-back {
  color: var(--mauve);
  font-size: 14px;
  transition: color 0.2s ease;
}

.article-back:hover {
  color: var(--terracotta);
}

.article-tag {
  padding: 6px 12px;
  background: rgba(221, 175, 138, 0.2);
  border-radius: 999px;
  color: var(--terracotta);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.article-title {
  margin: 0 0 18px;
  font-family: var(--font-thai);
  font-weight: 500;
  font-size: clamp(30px, 4.5vw, 46px);
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.article-lead {
  margin: 0 0 32px;
  color: var(--mauve);
  font-size: 19px;
  line-height: 1.7;
}

.article-hero-image {
  overflow: hidden;
  margin-bottom: 40px;
  background: #e6ddd5;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.article-hero-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.article-body h2 {
  margin: 40px 0 16px;
  font-family: var(--font-thai);
  font-weight: 500;
  font-size: 25px;
}

.article-body h2:first-child {
  margin-top: 0;
}

.article-body p {
  margin: 0 0 20px;
  color: #4a3d37;
  font-size: 17px;
  line-height: 1.85;
}

.article-cta {
  margin-top: 50px;
  padding: clamp(28px, 4vw, 36px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.article-cta p {
  margin: 0 0 20px;
  color: var(--mauve);
  font-size: 17px;
}

.article-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.faq-section {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(48px, 9vw, 120px);
  padding-top: clamp(40px, 5vw, 70px);
}

.faq-heading {
  align-self: start;
  position: sticky;
  top: 110px;
}

.faq-heading h2 {
  margin-bottom: 20px;
}

.faq-heading > p:last-child {
  max-width: 410px;
  margin: 0;
  color: var(--mauve);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 28px;
  gap: 16px;
  align-items: center;
  min-height: 94px;
  padding: 20px 0;
  cursor: pointer;
  font-size: clamp(17px, 1.7vw, 21px);
  font-weight: 500;
  line-height: 1.5;
  list-style: none;
}

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

.faq-item summary:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 5px;
  border-radius: 4px;
}

.faq-number {
  color: var(--terracotta);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
}

.faq-icon {
  position: relative;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(185, 111, 70, 0.38);
  border-radius: 50%;
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.faq-icon::before,
.faq-icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  background: var(--terracotta);
  content: "";
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 0.25s ease;
}

.faq-item[open] .faq-icon {
  background: rgba(221, 175, 138, 0.2);
  transform: rotate(180deg);
}

.faq-item[open] .faq-icon::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-answer {
  padding: 0 44px 27px 58px;
}

.faq-answer p {
  max-width: 680px;
  margin: 0;
  color: #5f514b;
  font-size: 15px;
  line-height: 1.85;
}

.terms-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(60px, 12vw, 170px);
}

.rent-price {
  display: flex;
  align-items: baseline;
  gap: 7px;
  margin-top: 44px;
  color: var(--terracotta);
}

.rent-price span {
  font-family: var(--font-thai);
  font-size: 25px;
}

.rent-price strong {
  font-family: var(--font-thai);
  font-size: clamp(62px, 7vw, 96px);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1;
}

.rent-price small {
  color: var(--taupe);
}

.included {
  color: var(--mauve);
}

.terms-list {
  align-self: center;
}

.term-row {
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 22px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.term-row > span {
  color: var(--terracotta);
  font-family: var(--font-thai);
}

.term-row strong,
.term-row p {
  margin: 0;
}

.term-row p {
  color: var(--taupe);
  font-size: 18px;
}

.term-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 28px;
  padding: 24px;
  background: var(--white);
  border-radius: 17px;
  box-shadow: 0 12px 38px rgba(74, 48, 34, 0.08);
}

.term-total span {
  color: var(--taupe);
  font-size: 16px;
}

.term-total strong {
  color: var(--terracotta);
  font-size: 20px;
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 80px;
  width: min(1400px, calc(100% - 32px));
  margin: 0 auto 16px;
  padding: clamp(58px, 8vw, 110px);
  background: var(--mauve);
  border-radius: var(--radius);
  color: var(--white);
}

.contact-section .eyebrow {
  color: var(--sand);
}

.contact-section h2 {
  font-size: clamp(48px, 6vw, 84px);
}

.contact-copy > p:last-child {
  max-width: 560px;
  color: #e8ddd7;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.contact-button {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 20px 22px;
  background: rgba(255, 253, 250, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 17px;
  color: white;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s ease, transform 0.2s ease;
}

.contact-button:hover {
  background: rgba(255, 253, 250, 0.15);
  transform: translateX(5px);
}

.contact-button span,
.contact-button strong {
  display: block;
}

.contact-button span {
  font-size: 11px;
  opacity: 0.75;
}

.contact-button strong {
  font-size: 20px;
}

.contact-button i {
  grid-column: 2;
  grid-row: 1 / span 2;
  font-family: var(--font-thai);
  font-size: 26px;
  font-style: normal;
}

.line-qr-card {
  display: grid;
  grid-template-columns: 132px 1fr;
  align-items: center;
  gap: 20px;
  margin: 0;
  padding: 16px;
  border-radius: 20px;

}

.line-qr-card img {
  width: 100%;
  max-width: 132px;
  height: auto;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  object-fit: contain;
  justify-self: start;
}

.line-qr-card figcaption {
  max-width: 170px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}

.keyword-section {
  width: min(var(--max), calc(100% - 48px));
  margin: clamp(72px, 9vw, 120px) auto;
  padding: clamp(44px, 6vw, 72px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.keyword-intro {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) 1fr;
  align-items: end;
  gap: clamp(32px, 7vw, 96px);
  margin-bottom: 38px;
}

.keyword-section h2 {
  margin: 8px 0 0;
  font-size: clamp(38px, 5vw, 66px);
  line-height: 1.12;
}

.keyword-intro > p {
  max-width: 650px;
  margin: 0;
  color: var(--taupe);
  font-size: 17px;
}

.keyword-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.keyword-tags li {
  padding: 9px 15px;
  background: rgba(221, 175, 138, 0.16);
  border: 1px solid rgba(185, 111, 70, 0.24);
  border-radius: 999px;
  color: var(--terracotta);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
}

footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 40px 0;
  color: var(--taupe);
  font-size: 12px;
}

footer p:last-child {
  text-align: right;
}

.mobile-actions {
  display: none;
}

.social-share {
  position: fixed;
  z-index: 35;
  top: 50%;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1px;
  filter: drop-shadow(-8px 10px 22px rgba(56, 45, 40, 0.14));
  transform: translateY(-50%);
}

.social-share-title {
  display: grid;
  width: 52px;
  height: 39px;
  place-items: center;
  background: var(--ink);
  border-radius: 14px 0 0 0;
  color: var(--white);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.social-share-button {
  position: relative;
  display: grid;
  width: 52px;
  height: 50px;
  padding: 0;
  place-items: center;
  background: var(--white);
  border: 0;
  color: var(--ink);
  cursor: pointer;
  transition: width 0.25s ease, color 0.25s ease, background-color 0.25s ease;
}

.social-share-button:last-of-type {
  border-radius: 0 0 0 14px;
}

.social-share-button svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.social-share-button::after {
  position: absolute;
  top: 50%;
  right: calc(100% + 9px);
  padding: 5px 9px;
  background: var(--ink);
  border-radius: 7px;
  color: var(--white);
  content: attr(data-label);
  font-size: 10px;
  opacity: 0;
  pointer-events: none;
  transform: translate(7px, -50%);
  transition: opacity 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}

.social-share-button:hover,
.social-share-button:focus-visible {
  width: 64px;
  color: white;
  outline: none;
}

.social-share-button:hover::after,
.social-share-button:focus-visible::after {
  opacity: 1;
  transform: translate(0, -50%);
}

.share-facebook:hover,
.share-facebook:focus-visible {
  background: #1877f2;
}

.share-line:hover,
.share-line:focus-visible {
  background: #06c755;
}

.share-x:hover,
.share-x:focus-visible {
  background: #111;
}

.share-copy:hover,
.share-copy:focus-visible,
.share-copy.copied {
  background: var(--terracotta);
}

.social-share-status {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.lightbox {
  width: min(1100px, calc(100% - 32px));
  max-width: none;
  padding: 0;
  background: transparent;
  border: 0;
  color: white;
}

.lightbox::backdrop {
  background: rgba(32, 24, 21, 0.92);
  backdrop-filter: blur(8px);
}

.lightbox figure {
  margin: 0;
}

.lightbox img {
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 14px;
}

.lightbox figcaption {
  padding-top: 10px;
  font-size: 13px;
  text-align: center;
}

.lightbox-close,
.lightbox-nav {
  position: fixed;
  z-index: 2;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  color: white;
  cursor: pointer;
}

.lightbox-close {
  top: 22px;
  right: 22px;
  font-size: 30px;
}

.lightbox-nav {
  top: 50%;
  font-size: 22px;
  transform: translateY(-50%);
}

.lightbox-prev {
  left: 22px;
}

.lightbox-next {
  right: 22px;
}

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

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

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

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

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .menu-button {
    display: flex;
    width: 44px;
    height: 44px;
    flex-direction: column;
    grid-column: 3;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 50%;
  }

  .menu-button span:not(.sr-only) {
    width: 18px;
    height: 1px;
    background: var(--ink);
  }

  .header-actions {
    display: none;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 14px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 13px 12px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 44px;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero-visual {
    width: min(680px, 100%);
    margin: 0 auto;
  }

  .feature-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-card:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .feature-card:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .gallery-grid {
    grid-auto-rows: 220px;
  }

  .blog-preview-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .location-section {
    grid-template-columns: 1fr;
    height: auto;
  }

  .location-image {
    max-height: 325px;
    min-height: 230px;
  }

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

@media (max-width: 720px) {
  .site-header {
    min-height: 68px;
    padding: 10px 18px;
  }

  .social-share {
    top: auto;
    right: 16px;
    bottom: 88px;
    flex-direction: row;
    align-items: center;
    filter: drop-shadow(0 8px 18px rgba(56, 45, 40, 0.16));
    transform: none;
  }

  .social-share-title {
    width: 44px;
    height: 44px;
    border-radius: 12px 0 0 12px;
  }

  .social-share-button {
    width: 44px;
    height: 44px;
  }

  .social-share-button:last-of-type {
    border-radius: 0 12px 12px 0;
  }

  .social-share-button::after {
    top: auto;
    right: 50%;
    bottom: calc(100% + 8px);
    transform: translate(50%, 6px);
  }

  .social-share-button:hover,
  .social-share-button:focus-visible {
    width: 44px;
    transform: translateY(-5px);
  }

  .social-share-button:hover::after,
  .social-share-button:focus-visible::after {
    transform: translate(50%, 0);
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand strong {
    font-size: 17px;
  }

  .hero,
  .section {
    width: min(100% - 32px, var(--max));
  }

  .hero {
    gap: 52px;
    padding: 35px 0 70px;
  }

  .hero h1 {
    font-size: clamp(46px, 14vw, 68px);
  }

  .hero-facts li {
    flex-direction: column;
    gap: 0;
    padding: 0 17px;
  }

  .hero-image-wrap {
    aspect-ratio: 4 / 5;
    border-radius: 120px 120px 24px 24px;
  }

  .availability-card {
    top: 5%;
    left: -5px;
  }

  .price-tag {
    right: -4px;
  }

  .section {
    padding: 80px 0;
  }

  .intro-grid,
  .gallery-heading,
  .area-info-heading,
  .blog-preview-heading,
  .faq-section,
  .terms-section,
  .keyword-intro {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .blog-preview-grid {
    grid-template-columns: 1fr;
  }

  .article-meta {
    flex-wrap: wrap;
    gap: 10px;
  }

  .article-cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .article-cta-actions .button {
    width: 100%;
  }

  .keyword-section {
    width: min(100% - 32px, var(--max));
    margin: 64px auto;
  }

  .intro-grid {
    padding-top: 42px;
  }

  .feature-strip {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 0;
    padding: 28px 24px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .feature-card:first-child {
    border-top: 0;
  }

  .feature-icon {
    margin: 30px 0 22px;
  }

  .feature-card-service {
    display: block;
  }

  .feature-card-service .feature-icon {
    margin: 30px 0 22px;
  }

  .gallery-grid {
    grid-auto-rows: 240px;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .gallery-wide {
    grid-column: span 2;
  }

  .gallery-tall {
    grid-row: span 1;
  }

  .location-section,
  .contact-section {
    width: calc(100% - 16px);
  }

  .location-card {
    padding: 27px 26px;
  }

  .area-info-grid {
    grid-template-columns: 1fr;
  }

  .faq-heading {
    position: static;
  }

  .faq-item summary {
    grid-template-columns: 34px minmax(0, 1fr) 28px;
    gap: 10px;
    min-height: 84px;
  }

  .faq-answer {
    padding: 0 38px 24px 44px;
  }

  .terms-section {
    display: grid;
  }

  .contact-section {
    gap: 42px;
    padding: 58px 24px;
  }

  .term-total {
    align-items: flex-start;
    flex-direction: column;
  }

  footer {
    display: flex;
    width: calc(100% - 32px);
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 105px;
  }

  footer p {
    margin: 0;
  }

  footer p:last-child {
    text-align: left;
  }

  .mobile-actions {
    position: fixed;
    z-index: 40;
    right: 12px;
    bottom: 12px;
    left: 12px;
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: 8px;
  }

  .mobile-cta {
    display: flex;
    min-width: 0;
    align-items: center;
    justify-content: space-between;
    padding: 13px 20px;
    background: var(--terracotta);
    border-radius: 999px;
    box-shadow: 0 15px 40px rgba(56, 45, 40, 0.28);
    color: white;
  }

  .mobile-cta-line {
    background: #4d8f58;
  }

  .mobile-cta span {
    font-size: 12px;
  }

  .mobile-cta strong {
    font-size: 14px;
  }

  .lightbox-nav {
    top: auto;
    bottom: 18px;
  }

  .lightbox-prev {
    left: calc(50% - 58px);
  }

  .lightbox-next {
    right: calc(50% - 58px);
  }

  .line-qr-card {
    grid-template-columns: 110px 1fr;
  }

  .line-qr-card img {
    max-width: 110px;
  }
}

@media (max-width: 460px) {
  .hero-actions {
    display: grid;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-wide {
    grid-column: auto;
  }

  .area-card {
    padding: 25px 20px;
  }

  .area-card-header {
    gap: 14px;
  }

  .area-list li {
    gap: 12px;
  }
}

/* ------------------------------------------------------------------ */
/* WordPress core boilerplate classes (not present in the original    */
/* static site, but expected by WP core output — search forms, classic */
/* editor alignment classes, pagination, etc.)                         */
/* ------------------------------------------------------------------ */

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.alignleft {
  float: left;
  margin: 6px 24px 16px 0;
}

.alignright {
  float: right;
  margin: 6px 0 16px 24px;
}

.aligncenter {
  display: block;
  margin: 24px auto;
}

.wp-caption {
  max-width: 100%;
}

.wp-caption-text {
  margin-top: 8px;
  color: var(--taupe);
  font-size: 13px;
  text-align: center;
}

.article-body img {
  height: auto;
  margin: 24px 0;
  border-radius: 14px;
}

.blog-pagination .page-numbers {
  display: inline-flex;
  min-width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-size: 14px;
}

.blog-pagination .page-numbers.current {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: white;
}
