:root {
  --ink: #171514;
  --muted: #6f6862;
  --paper: #f7f2ea;
  --warm: #c9a36e;
  --warm-dark: #8c6a3c;
  --stone: #ded5c9;
  --charcoal: #282725;
  --line: rgba(23, 21, 20, 0.14);
  --white: #fffaf2;
  --shadow: 0 26px 70px rgba(24, 22, 20, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Microsoft JhengHei", "PingFang TC", Arial, sans-serif;
  line-height: 1.7;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(190px, 1fr) auto minmax(130px, 1fr);
  align-items: center;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(20, 18, 16, 0.76), rgba(20, 18, 16, 0));
}

.page-header {
  position: sticky;
  color: var(--ink);
  background: rgba(247, 242, 234, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  display: grid;
  width: auto;
  height: auto;
  place-items: center;
  border: 0;
  font-family: Georgia, serif;
  font-size: 22px;
  letter-spacing: 0.08em;
}

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

.brand strong {
  font-size: 17px;
  letter-spacing: 0.08em;
}

.brand small {
  margin-top: -4px;
  color: currentColor;
  opacity: 0.72;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 3vw, 34px);
  font-size: 14px;
  color: inherit;
}

.main-nav a {
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  letter-spacing: 0.08em;
}

.main-nav a:hover,
.main-nav a.active {
  border-color: currentColor;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 1px;
  background: currentColor;
  transition: transform 220ms ease, opacity 220ms ease;
}

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

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

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

.header-action,
.primary-button,
.secondary-button,
.submit-button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  border-radius: 2px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.header-action {
  justify-self: end;
  min-width: 126px;
  padding: 0 18px;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: end;
  padding: 150px clamp(20px, 6vw, 82px) 70px;
  overflow: hidden;
  color: var(--white);
}

.ceremonial-hero {
  min-height: 100vh;
}

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

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(18, 16, 14, 0.82) 0%, rgba(18, 16, 14, 0.55) 40%, rgba(18, 16, 14, 0.14) 78%),
    linear-gradient(180deg, rgba(18, 16, 14, 0.38), rgba(18, 16, 14, 0.64));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: min(920px, calc(100vw - 164px));
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--warm);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "PMingLiU", "Songti TC", serif;
  line-height: 1.22;
}

h1 {
  font-size: 76px;
}

h1,
.home-page .hero-content h1,
.page-hero h1,
.project-detail-heading h1 {
  white-space: nowrap;
}

h2 {
  font-size: clamp(30px, 4vw, 52px);
}

h3 {
  font-size: 24px;
}

.hero-copy {
  max-width: 570px;
  margin: 22px 0 0;
  color: rgba(255, 250, 242, 0.86);
  font-size: clamp(17px, 2vw, 21px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.primary-button,
.secondary-button {
  min-width: 142px;
  padding: 0 24px;
}

.primary-button {
  border-color: var(--warm);
  background: var(--warm);
  color: #17120d;
}

.secondary-button {
  color: var(--white);
}

.hero-panel {
  position: absolute;
  right: clamp(20px, 5vw, 70px);
  bottom: 46px;
  z-index: 3;
  width: min(350px, calc(100% - 40px));
  padding: 24px;
  border-left: 2px solid var(--warm);
  background: rgba(23, 21, 20, 0.7);
  backdrop-filter: blur(16px);
}

.hero-panel strong {
  display: block;
  margin-top: 8px;
  font-size: 20px;
}

.hero-panel p {
  margin: 8px 0 0;
  color: rgba(255, 250, 242, 0.76);
  font-size: 14px;
}

.intro-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.intro-band div {
  padding: 28px clamp(20px, 6vw, 82px);
  background: #eee6da;
}

.intro-band strong {
  display: block;
  color: var(--warm-dark);
  font-family: Georgia, serif;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1;
}

.intro-band span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.awards-band {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.4fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
  padding: clamp(48px, 6vw, 82px) clamp(20px, 6vw, 82px);
  background: #fffaf2;
  border-bottom: 1px solid var(--line);
}

.awards-band h2 {
  margin: 8px 0 0;
}

.awards-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.awards-list li {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.awards-list strong {
  color: var(--warm-dark);
  font-family: Georgia, serif;
  font-size: 24px;
  line-height: 1;
}

.awards-list span {
  color: var(--ink);
}

.section,
.page-hero,
.split-section {
  padding: clamp(72px, 9vw, 128px) clamp(20px, 6vw, 82px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.single-line-heading {
  white-space: nowrap;
  font-size: clamp(18px, 3vw, 44px);
}

.section-heading p:last-child,
.prose,
.page-hero p,
.entry-card p,
.work-row p,
.timeline p {
  color: var(--muted);
  font-size: 17px;
}

.page-hero {
  min-height: 56vh;
  display: grid;
  align-content: end;
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  max-width: none;
}

.page-hero p:last-child {
  max-width: 690px;
  margin: 22px 0 0;
}

.entry-section {
  background: #fffaf2;
}

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

.entry-card {
  min-height: 0;
  display: grid;
  grid-template-rows: auto 1fr;
  align-content: stretch;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper);
  transition: transform 220ms ease, border-color 220ms ease;
}

.entry-card img {
  width: 100%;
  height: clamp(190px, 20vw, 260px);
  object-fit: cover;
}

.entry-card > div {
  display: grid;
  align-content: start;
  padding: 26px 28px 30px;
}

.entry-card h3 {
  margin-top: 10px;
}

.entry-card p {
  margin: 18px 0 0;
}

.entry-card:hover {
  transform: translateY(-4px);
  border-color: rgba(140, 106, 60, 0.38);
}

.entry-card span,
.work-row span,
.timeline span,
.service-grid span,
.hero-panel span {
  color: var(--warm-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(320px, 1fr);
  gap: clamp(32px, 8vw, 110px);
  background: #fffaf2;
}

.prose {
  display: grid;
  gap: 18px;
}

.prose p {
  margin: 0;
}

.services {
  background: #282725;
  color: var(--white);
}

.services.light {
  color: var(--ink);
  background: var(--paper);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 250, 242, 0.16);
  border-left: 1px solid rgba(255, 250, 242, 0.16);
}

.services.light .service-grid {
  border-color: var(--line);
}

.service-grid article {
  min-height: 245px;
  padding: 28px;
  border-right: 1px solid rgba(255, 250, 242, 0.16);
  border-bottom: 1px solid rgba(255, 250, 242, 0.16);
}

.services.light .service-grid article {
  border-color: var(--line);
}

.service-grid h3 {
  margin-top: 48px;
  font-size: 23px;
}

.service-grid p {
  color: rgba(255, 250, 242, 0.7);
}

.services.light .service-grid p {
  color: var(--muted);
}

.portfolio-page {
  background: #fffaf2;
}

.work-list {
  display: grid;
  gap: clamp(52px, 8vw, 110px);
}

.work-row {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.65fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: end;
  transition: transform 260ms ease;
}

.work-row:hover {
  transform: translateY(-4px);
}

.work-row.reverse {
  grid-template-columns: minmax(280px, 0.65fr) minmax(0, 1.15fr);
}

.work-row.reverse img {
  order: 2;
}

.work-row img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.work-row h2 {
  margin-top: 12px;
}

.work-link,
.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--warm-dark);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-detail-hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: end;
  color: var(--white);
  overflow: hidden;
}

.project-detail-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(18, 16, 14, 0.12), rgba(18, 16, 14, 0.78)),
    linear-gradient(90deg, rgba(18, 16, 14, 0.72), rgba(18, 16, 14, 0.12));
}

.project-detail-heading {
  position: relative;
  z-index: 1;
  max-width: 820px;
  padding: 150px clamp(20px, 6vw, 82px) 72px;
}

.project-detail-heading p:last-child {
  max-width: 680px;
  color: rgba(255, 250, 242, 0.82);
  font-size: 18px;
}

.project-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.project-meta div {
  padding: 28px clamp(18px, 4vw, 54px);
  background: #eee6da;
}

.project-meta span {
  display: block;
  color: var(--warm-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.project-meta strong {
  display: block;
  margin-top: 8px;
  font-size: 18px;
}

.project-story {
  border-bottom: 1px solid var(--line);
}

.project-gallery-section {
  background: #fffaf2;
}

.project-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.project-gallery img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.detail-back {
  width: fit-content;
  color: var(--white);
  background: var(--ink);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
}

.timeline article {
  min-height: 250px;
  padding: 34px;
  background: #fffaf2;
}

.timeline h2 {
  margin-top: 34px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1fr);
  gap: clamp(34px, 7vw, 86px);
  align-items: start;
  background: #fffaf2;
}

.map-section {
  padding: 0 clamp(20px, 6vw, 82px) clamp(72px, 9vw, 128px);
  background: #fffaf2;
}

.map-section iframe {
  width: 100%;
  min-height: 420px;
  border: 1px solid var(--line);
}

.contact-map-image {
  display: block;
  width: 100%;
  max-width: 980px;
  height: auto;
  margin: 0 auto;
  border: 1px solid var(--line);
  background: #fffaf2;
}

.clean-map {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(23, 21, 20, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(23, 21, 20, 0.035) 1px, transparent 1px),
    #efe7da;
  background-size: 54px 54px;
}

.map-road {
  position: absolute;
  display: grid;
  place-items: center;
  color: rgba(23, 21, 20, 0.56);
  font-size: 13px;
  letter-spacing: 0.08em;
  background: #fffaf2;
  box-shadow: 0 0 0 1px rgba(23, 21, 20, 0.08);
}

.map-road span {
  padding: 4px 10px;
  background: rgba(255, 250, 242, 0.88);
}

.map-road-horizontal {
  left: -4%;
  right: -4%;
  height: 74px;
}

.map-road-vertical {
  top: -8%;
  bottom: -8%;
  width: 74px;
}

.map-road-main {
  top: 56%;
  transform: rotate(-3deg);
}

.map-road-north {
  top: 22%;
  transform: rotate(2deg);
}

.map-road-west {
  left: 20%;
  transform: rotate(4deg);
}

.map-road-east {
  right: 18%;
  transform: rotate(-5deg);
}

.map-marker {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 4px;
  min-width: 168px;
  padding: 14px 16px;
  border: 1px solid rgba(23, 21, 20, 0.14);
  background: rgba(255, 250, 242, 0.96);
  box-shadow: 0 18px 44px rgba(24, 22, 20, 0.12);
}

.map-marker::before {
  content: "";
  position: absolute;
  left: 22px;
  bottom: -9px;
  width: 18px;
  height: 18px;
  background: inherit;
  border-right: 1px solid rgba(23, 21, 20, 0.14);
  border-bottom: 1px solid rgba(23, 21, 20, 0.14);
  transform: rotate(45deg);
}

.map-marker strong {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--white);
  background: var(--charcoal);
  font-family: Georgia, serif;
  font-size: 16px;
}

.map-marker span {
  font-weight: 700;
}

.map-marker small {
  color: var(--muted);
}

.map-marker-office {
  left: 45%;
  top: 43%;
}

.map-marker-parking {
  min-width: 136px;
}

.map-marker-parking strong {
  background: var(--warm-dark);
}

.parking-one {
  left: 16%;
  top: 30%;
}

.parking-two {
  right: 13%;
  bottom: 20%;
}

.map-caption {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.faq-section {
  display: grid;
  gap: 14px;
  background: #fffaf2;
}

.faq-section details {
  border: 1px solid var(--line);
  background: var(--paper);
}

.faq-section summary {
  cursor: pointer;
  padding: 22px 24px;
  font-weight: 700;
}

.faq-section details p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--muted);
}

dl {
  margin: 0;
}

dl div {
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

dt {
  color: var(--warm-dark);
  font-weight: 700;
}

dd {
  margin: 4px 0 0;
  color: var(--ink);
}

dd a + a {
  margin-left: 14px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  padding: clamp(22px, 4vw, 38px);
  border: 1px solid var(--line);
  background: rgba(247, 242, 234, 0.74);
  box-shadow: 0 18px 54px rgba(24, 22, 20, 0.1);
}

.admin-layout {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(300px, 0.85fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
  background: #fffaf2;
}

.admin-form {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 38px);
  border: 1px solid var(--line);
  background: rgba(247, 242, 234, 0.76);
  box-shadow: 0 18px 54px rgba(24, 22, 20, 0.08);
}

.admin-form .section-heading {
  margin-bottom: 2px;
}

.admin-preview {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid var(--line);
}

.admin-list-section {
  background: var(--paper);
}

.admin-project-list {
  display: grid;
  gap: 16px;
}

.admin-inquiry-list {
  display: grid;
  gap: 14px;
}

.admin-project {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  background: #fffaf2;
}

.admin-inquiry,
.empty-note {
  padding: 18px;
  border: 1px solid var(--line);
  background: #fffaf2;
}

.admin-inquiry strong {
  display: block;
  font-size: 18px;
}

.admin-inquiry p,
.empty-note {
  margin: 6px 0 0;
  color: var(--muted);
}

.admin-project img {
  width: 180px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.admin-project strong {
  display: block;
  margin-top: 4px;
  font-size: 18px;
}

.admin-project p {
  margin: 4px 0 0;
  color: var(--muted);
}

.admin-project button,
.secondary-admin-button {
  min-height: 42px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.admin-project button {
  padding: 0 16px;
}

.secondary-admin-button {
  margin-top: 22px;
  padding: 0 20px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(23, 21, 20, 0.2);
  border-radius: 0;
  padding: 11px 12px;
  color: var(--ink);
  background: #fffdfa;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(201, 163, 110, 0.48);
  border-color: var(--warm-dark);
}

.full-field,
.submit-button,
.form-status {
  grid-column: 1 / -1;
}

.submit-button {
  width: 100%;
  border: 0;
  background: var(--ink);
  color: var(--white);
  cursor: pointer;
}

.submit-button:hover {
  background: #3a342f;
}

.form-status {
  min-height: 24px;
  margin: -4px 0 0;
  color: var(--warm-dark);
  font-weight: 700;
}

.form-status a {
  margin-left: 8px;
  border-bottom: 1px solid currentColor;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(20px, 6vw, 82px);
  color: rgba(255, 250, 242, 0.72);
  background: #171514;
}

.site-footer p {
  margin: 0;
}

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

  .header-action {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    padding: 20px;
    color: var(--ink);
    background: rgba(247, 242, 234, 0.98);
    border-bottom: 1px solid var(--line);
  }

  .site-header.nav-open .main-nav {
    display: grid;
    gap: 14px;
  }

  .hero {
    min-height: 860px;
  }

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

  .home-page .hero-content h1 {
    white-space: nowrap;
  }

  .hero-panel {
    left: 20px;
    right: auto;
  }

  .entry-grid,
  .admin-layout,
  .split-section,
  .work-row,
  .work-row.reverse,
  .project-meta,
  .project-gallery,
  .contact {
    grid-template-columns: 1fr;
  }

  .work-row.reverse img {
    order: 0;
  }

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

@media (min-width: 761px) and (max-width: 980px) {
  .site-header {
    grid-template-columns: minmax(170px, 0.8fr) auto minmax(110px, 0.55fr);
    gap: 16px;
  }

  .header-action {
    display: inline-flex;
  }

  .menu-toggle {
    display: none;
  }

  .main-nav {
    position: static;
    display: flex;
    padding: 0;
    gap: 16px;
    color: inherit;
    background: transparent;
    border-bottom: 0;
    font-size: 12px;
  }
}

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

  .brand small,
  .header-action {
    display: none;
  }

  .brand-mark {
    width: auto;
    height: auto;
  }

  .hero {
    min-height: 760px;
    padding: 118px 18px 260px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(18, 16, 14, 0.68), rgba(18, 16, 14, 0.74)),
      linear-gradient(90deg, rgba(18, 16, 14, 0.42), rgba(18, 16, 14, 0.2));
  }

  .hero-actions,
  .site-footer {
    flex-direction: column;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
  }

  .intro-band,
  .awards-band,
  .admin-project,
  .service-grid,
  .timeline,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .admin-project img {
    width: 100%;
  }

  .intro-band div {
    padding: 24px 20px;
  }

  .awards-band {
    padding: 44px 20px;
  }

  .awards-list li {
    grid-template-columns: 76px 1fr;
    gap: 14px;
  }

  .section,
  .page-hero,
  .split-section {
    padding: 64px 18px;
  }

  .map-section {
    padding: 0 18px 64px;
  }

  .clean-map {
    min-height: 520px;
  }

  .map-road-horizontal {
    height: 58px;
  }

  .map-road-vertical {
    width: 58px;
  }

  .map-marker {
    min-width: 142px;
    padding: 12px 14px;
  }

  .map-marker-office {
    left: 32%;
    top: 43%;
  }

  .parking-one {
    left: 7%;
    top: 20%;
  }

  .parking-two {
    right: 6%;
    bottom: 16%;
  }

  .page-hero {
    min-height: 48vh;
  }

  h1 {
    font-size: 34px;
  }

  .page-hero h1,
  .project-detail-heading h1 {
    font-size: 30px;
  }

  .home-page .hero-content h1 {
    font-size: 36px;
  }

  .entry-card img {
    height: 210px;
  }
}
