:root {
  --home-bg: #f8f5f3;
  --home-surface: #ffffff;
  --home-ink: #2b2421;
  --home-muted: #7d726c;
  --home-line: #e9ded9;
  --home-accent: #bd7c76;
  --home-accent-dark: #965d58;
  --home-accent-soft: #f6e8e6;
  --home-green: #3f7f5f;
  --home-green-soft: #eaf5ee;
  --home-shadow: 0 24px 70px rgba(70, 47, 40, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(
      circle at top left,
      rgba(189, 124, 118, 0.13),
      transparent 34rem
    ),
    var(--home-bg);
  color: var(--home-ink);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

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

a {
  color: inherit;
}

button,
input,
select {
  font: inherit;
}

.public-header {
  position: sticky;
  top: 0;
  z-index: 80;
  border-bottom: 1px solid rgba(233, 222, 217, 0.82);
  background: rgba(255, 255, 255, 0.91);
  backdrop-filter: blur(16px);
}

.public-header-inner {
  width: min(1180px, calc(100% - 36px));
  min-height: 78px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 28px;
}

.public-brand {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  white-space: nowrap;
}

.public-brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: var(--home-accent);
  color: white;
  font: 700 23px Georgia, serif;
}

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

.public-brand strong {
  margin-bottom: 2px;
  font-size: 14px;
}

.public-brand small {
  color: var(--home-muted);
  font-size: 10px;
}

.public-navigation {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 4px;
}

.public-navigation a {
  padding: 9px 11px;
  border-radius: 10px;
  color: #625852;
  font-size: 12px;
  text-decoration: none;
}

.public-navigation a:hover {
  background: var(--home-accent-soft);
  color: var(--home-accent-dark);
}

.header-booking-button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-weight: 800;
  text-decoration: none;
  transition: 0.16s ease;
}

.header-booking-button {
  padding: 11px 15px;
  background: var(--home-accent);
  color: white;
  font-size: 11px;
  white-space: nowrap;
}

.header-booking-button:hover,
.button-primary:hover {
  background: var(--home-accent-dark);
  transform: translateY(-1px);
}

.public-menu-toggle {
  display: none;
}

.public-hero {
  width: min(1180px, calc(100% - 36px));
  min-height: 670px;
  margin: auto;
  padding: 72px 0 82px;
  display: grid;
  grid-template-columns:
    minmax(0, 1.02fr)
    minmax(380px, 0.98fr);
  gap: 70px;
  align-items: center;
}

.section-eyebrow {
  display: inline-flex;
  margin-bottom: 13px;
  color: var(--home-accent-dark);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.public-hero h1 {
  max-width: 680px;
  margin: 0 0 21px;
  font-size: clamp(47px, 6.3vw, 82px);
  line-height: 0.99;
  letter-spacing: -0.06em;
}

.public-hero-copy > p {
  max-width: 570px;
  margin: 0;
  color: var(--home-muted);
  font-size: 15px;
  line-height: 1.75;
}

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

.button {
  min-height: 46px;
  padding: 11px 17px;
  font-size: 12px;
}

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

.button-secondary {
  border: 1px solid var(--home-line);
  background: white;
  color: var(--home-ink);
}

.button-secondary:hover {
  border-color: var(--home-accent);
  background: var(--home-accent-soft);
}

.hero-points {
  margin-top: 27px;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  color: #655b55;
  font-size: 11px;
}

.public-hero-visual {
  position: relative;
  min-height: 510px;
}

.hero-portrait-card {
  position: absolute;
  inset: 0 35px 20px 0;
  overflow: hidden;
  border: 10px solid white;
  border-radius: 30px;
  background: #e8d8d3;
  box-shadow: var(--home-shadow);
}

.hero-portrait-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-portrait-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 14px 15px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.91);
  backdrop-filter: blur(12px);
}

.hero-portrait-caption span,
.hero-portrait-caption strong {
  display: block;
}

.hero-portrait-caption span {
  margin-bottom: 3px;
  color: var(--home-muted);
  font-size: 9px;
  text-transform: uppercase;
}

.hero-portrait-caption strong {
  font-size: 14px;
}

.hero-floating-card {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 220px;
  padding: 16px;
  border: 1px solid var(--home-line);
  border-radius: 16px;
  background: white;
  box-shadow: 0 18px 45px rgba(70, 47, 40, 0.12);
}

.hero-floating-card strong,
.hero-floating-card span {
  display: block;
}

.hero-floating-card strong {
  margin-bottom: 5px;
  font-size: 12px;
}

.hero-floating-card span {
  color: var(--home-muted);
  font-size: 10px;
  line-height: 1.5;
}

.public-section {
  width: min(1180px, calc(100% - 36px));
  margin: auto;
  padding: 85px 0;
  scroll-margin-top: 78px;
}

.schedule-section {
  padding-top: 68px;
}

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

.section-heading h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(31px, 4.2vw, 50px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.section-link {
  flex: 0 0 auto;
  color: var(--home-accent-dark);
  font-size: 11px;
  font-weight: 900;
  text-decoration: none;
}

.section-side-copy {
  max-width: 390px;
  margin: 0;
  color: var(--home-muted);
  font-size: 11px;
  line-height: 1.65;
}

.privacy-note {
  margin: -12px 0 22px;
  color: var(--home-muted);
  font-size: 10px;
}

.booked-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.booked-card {
  min-height: 150px;
  padding: 15px;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 14px;
  align-items: stretch;
  border: 1px solid var(--home-line);
  border-radius: 18px;
  background: white;
  box-shadow: 0 10px 34px rgba(70, 47, 40, 0.045);
}

.booked-date {
  padding: 10px 7px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  background: var(--home-accent-soft);
  color: var(--home-accent-dark);
  text-align: center;
}

.booked-date span {
  margin-bottom: 4px;
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
}

.booked-date strong {
  font-size: 27px;
  line-height: 1;
}

.booked-date small {
  margin-top: 5px;
  font-size: 8px;
}

.booked-information {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.booked-status {
  margin-bottom: 8px;
  color: var(--home-accent-dark);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.booked-information strong {
  margin-bottom: 5px;
  font-size: 24px;
}

.booked-information small {
  color: var(--home-muted);
  font-size: 10px;
  line-height: 1.45;
}

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

.service-card {
  min-height: 260px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--home-line);
  border-radius: 21px;
  background: white;
  box-shadow: 0 13px 45px rgba(70, 47, 40, 0.05);
}

.service-number {
  margin-bottom: 34px;
  color: var(--home-accent);
  font-size: 11px;
  font-weight: 900;
}

.service-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

.service-card p {
  margin: 0;
  color: var(--home-muted);
  font-size: 11px;
  line-height: 1.7;
}

.service-meta {
  margin-top: auto;
  padding-top: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--home-muted);
  font-size: 9px;
}

.service-meta a {
  color: var(--home-accent-dark);
  font-weight: 900;
  text-decoration: none;
}

.portfolio-section {
  width: 100%;
  max-width: none;
  padding-inline: max(18px, calc((100% - 1180px) / 2));
  background: #2c2522;
  color: white;
}

.portfolio-section .section-heading {
  width: 100%;
}

.portfolio-section .section-link {
  color: #eabcb7;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 190px;
  gap: 12px;
}

.portfolio-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 19px;
  background: #473a35;
}

.portfolio-card-1 {
  grid-column: span 5;
  grid-row: span 2;
}

.portfolio-card-2,
.portfolio-card-3 {
  grid-column: span 3;
}

.portfolio-card-4 {
  grid-column: span 4;
}

.portfolio-card-5 {
  grid-column: span 3;
}

.portfolio-card-6 {
  grid-column: span 4;
}

.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

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

.portfolio-card figcaption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 11px 12px;
  border-radius: 12px;
  background: rgba(34, 27, 25, 0.66);
  backdrop-filter: blur(10px);
}

.portfolio-card figcaption span,
.portfolio-card figcaption strong {
  display: block;
}

.portfolio-card figcaption span {
  margin-bottom: 2px;
  color: #dcc9c5;
  font-size: 8px;
  text-transform: uppercase;
}

.portfolio-card figcaption strong {
  font-size: 11px;
}

.price-section {
  padding-bottom: 95px;
}

.price-list {
  overflow: hidden;
  border: 1px solid var(--home-line);
  border-radius: 22px;
  background: white;
}

.price-item {
  padding: 21px 23px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  border-bottom: 1px solid var(--home-line);
}

.price-item:last-child {
  border-bottom: 0;
}

.price-item h3 {
  margin: 0 0 5px;
  font-size: 15px;
}

.price-item p {
  max-width: 640px;
  margin: 0;
  color: var(--home-muted);
  font-size: 10px;
  line-height: 1.55;
}

.price-item-end {
  min-width: 180px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}

.price-item-end strong {
  font-size: 17px;
  white-space: nowrap;
}

.price-item-end a {
  padding: 8px 10px;
  border-radius: 9px;
  background: var(--home-accent-soft);
  color: var(--home-accent-dark);
  font-size: 9px;
  font-weight: 900;
  text-decoration: none;
}

.contact-section {
  padding-top: 45px;
}

.contact-card {
  padding: 46px;
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 50px;
  align-items: center;
  border-radius: 28px;
  background:
    radial-gradient(
      circle at top right,
      rgba(255, 255, 255, 0.23),
      transparent 20rem
    ),
    var(--home-accent);
  color: white;
  box-shadow: var(--home-shadow);
}

.contact-copy h2 {
  max-width: 650px;
  margin: 0 0 14px;
  font-size: clamp(32px, 4.5vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.contact-copy p {
  max-width: 580px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  line-height: 1.7;
}

.contact-card .section-eyebrow {
  color: #ffe6e3;
}

.contact-card .button-primary {
  background: white;
  color: var(--home-accent-dark);
}

.contact-card .button-secondary {
  border-color: rgba(255, 255, 255, 0.45);
  background: transparent;
  color: white;
}

.contact-details {
  display: grid;
  gap: 9px;
}

.contact-detail {
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  text-decoration: none;
}

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

.contact-detail span {
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.69);
  font-size: 8px;
  text-transform: uppercase;
}

.contact-detail strong {
  font-size: 11px;
  line-height: 1.5;
}

.public-empty-state {
  padding: 36px 20px;
  border: 1px dashed var(--home-line);
  border-radius: 18px;
  color: var(--home-muted);
  background: rgba(255, 255, 255, 0.58);
  text-align: center;
  font-size: 11px;
}

.public-footer {
  width: min(1180px, calc(100% - 36px));
  margin: 20px auto 0;
  padding: 30px 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border-top: 1px solid var(--home-line);
}

.public-footer strong,
.public-footer span {
  display: block;
}

.public-footer strong {
  margin-bottom: 3px;
  font-size: 12px;
}

.public-footer span {
  color: var(--home-muted);
  font-size: 9px;
}

.footer-links {
  display: flex;
  gap: 17px;
}

.footer-links a {
  color: var(--home-muted);
  font-size: 9px;
  text-decoration: none;
}

@media (max-width: 980px) {
  .public-navigation {
    display: none;
  }

  .public-menu-toggle {
    margin-left: auto;
    display: inline-flex;
    padding: 8px 10px;
    border: 1px solid var(--home-line);
    border-radius: 10px;
    background: white;
    color: var(--home-ink);
    font-size: 10px;
    font-weight: 800;
  }

  .public-navigation.open {
    position: absolute;
    top: 68px;
    left: 18px;
    right: 18px;
    display: grid;
    padding: 10px;
    border: 1px solid var(--home-line);
    border-radius: 14px;
    background: white;
    box-shadow: var(--home-shadow);
  }

  .public-hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .public-hero-visual {
    min-height: 560px;
  }

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

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

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

@media (max-width: 680px) {
  .public-header-inner {
    width: calc(100% - 24px);
    min-height: 68px;
    gap: 9px;
  }

  .public-brand small {
    display: none;
  }

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

  .header-booking-button {
    padding: 9px 10px;
    font-size: 9px;
  }

  .public-hero {
    width: calc(100% - 24px);
    padding: 45px 0 55px;
  }

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

  .public-hero-copy > p {
    font-size: 13px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .button {
    width: 100%;
    text-align: center;
  }

  .hero-points {
    display: grid;
    gap: 8px;
  }

  .public-hero-visual {
    min-height: 435px;
  }

  .hero-portrait-card {
    right: 13px;
    border-width: 7px;
    border-radius: 23px;
  }

  .hero-floating-card {
    width: 190px;
  }

  .public-section {
    width: calc(100% - 24px);
    padding: 58px 0;
  }

  .section-heading {
    align-items: flex-start;
    display: grid;
    gap: 13px;
  }

  .section-heading h2 {
    font-size: 34px;
  }

  .section-side-copy {
    max-width: none;
  }

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

  .booked-card {
    min-height: 125px;
  }

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

  .service-card {
    min-height: 230px;
  }

  .portfolio-section {
    width: 100%;
    padding-inline: 12px;
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }

  .portfolio-card,
  .portfolio-card-1,
  .portfolio-card-2,
  .portfolio-card-3,
  .portfolio-card-4,
  .portfolio-card-5,
  .portfolio-card-6 {
    grid-column: span 1;
    grid-row: span 1;
  }

  .portfolio-card-1 {
    grid-column: span 2;
    grid-row: span 2;
  }

  .price-item {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .price-item-end {
    min-width: 0;
    justify-content: space-between;
  }

  .contact-card {
    padding: 30px 20px;
    border-radius: 22px;
  }

  .public-footer {
    width: calc(100% - 24px);
    display: grid;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}

.hero-portrait-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* Portofolio menampilkan foto penuh */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: auto;
  gap: 14px;
}

.portfolio-card,
.portfolio-card-1,
.portfolio-card-2,
.portfolio-card-3,
.portfolio-card-4,
.portfolio-card-5,
.portfolio-card-6 {
  grid-column: auto !important;
  grid-row: auto !important;

  height: auto;
  display: flex;
  flex-direction: column;

  overflow: hidden;
  border-radius: 18px;
  background: #ffffff;
}

.portfolio-card img {
  width: 100%;
  height: auto;
  max-height: none;

  display: block;
  object-fit: contain;
  object-position: center;

  background: #2c2522;
}

.portfolio-card figcaption {
  position: static;

  margin: 0;
  padding: 12px 14px;

  border-radius: 0;
  background: #ffffff;
  color: #2c2522;
  backdrop-filter: none;
}

.portfolio-card figcaption span {
  color: #9f625d;
}

.portfolio-card figcaption strong {
  color: #2c2522;
}

@media (max-width: 680px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
}

/* ==================================================
   MOBILE RESPONSIVE FIX
   ================================================== */

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 680px) {
  /* Header mobile */
  .public-header-inner {
    width: 100%;
    min-height: 72px;
    padding: 10px 14px;
    gap: 8px;
  }

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

  .public-brand-mark {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    font-size: 20px;
  }

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

  .public-brand strong {
    overflow: hidden;
    font-size: 12px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .public-brand small {
    display: none;
  }

  .public-menu-toggle {
    flex: 0 0 auto;
    margin-left: 0;
    padding: 9px 11px;
    font-size: 10px;
  }

  .header-booking-button {
    flex: 0 0 auto;
    padding: 10px 11px;
    border-radius: 10px;
    font-size: 9px;
  }

  .public-navigation.open {
    top: 65px;
    left: 12px;
    right: 12px;
    z-index: 100;
  }

  /* Hero mobile */
  .public-hero {
    width: 100%;
    min-height: 0;
    padding: 36px 14px 52px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .public-hero-copy {
    min-width: 0;
  }

  .public-hero h1 {
    max-width: 100%;
    font-size: clamp(38px, 12vw, 48px);
    line-height: 1.02;
    overflow-wrap: break-word;
  }

  .public-hero-copy > p {
    max-width: 100%;
    font-size: 13px;
    line-height: 1.7;
  }

  .hero-actions {
    width: 100%;
    grid-template-columns: 1fr 1fr;
  }

  .hero-points {
    grid-template-columns: 1fr;
  }

  /* Foto owner tidak terpotong */
  .public-hero-visual {
    position: relative;
    width: 100%;
    min-height: 0;
  }

  .hero-portrait-card {
    position: relative;
    inset: auto;

    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;

    border-width: 7px;
    border-radius: 24px;
    background: #eee4e1;
  }

  .hero-portrait-card img {
    width: 100%;
    height: 100%;

    object-fit: contain;
    object-position: center top;

    background: #eee4e1;
  }

  .hero-portrait-caption {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 12px;
  }

  /* Kartu kecil tidak menutupi foto */
  .hero-floating-card {
    position: relative;
    right: auto;
    bottom: auto;

    width: calc(100% - 24px);
    margin: 10px auto 0;
    padding: 13px 14px;
  }

  /* Bagian umum */
  .public-section {
    width: 100%;
    padding: 58px 14px;
  }

  .section-heading {
    width: 100%;
  }

  .section-heading h2 {
    max-width: 100%;
    font-size: 34px;
    overflow-wrap: break-word;
  }

  /* Portofolio mobile */
  .portfolio-section {
    width: 100%;
    padding: 58px 14px;
  }

  .portfolio-grid {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 14px;
  }

  .portfolio-card,
  .portfolio-card-1,
  .portfolio-card-2,
  .portfolio-card-3,
  .portfolio-card-4,
  .portfolio-card-5,
  .portfolio-card-6 {
    width: 100%;
    height: auto;

    grid-column: auto !important;
    grid-row: auto !important;

    display: flex;
    flex-direction: column;
  }

  .portfolio-card img {
    width: 100%;
    height: auto;
    max-height: none;

    object-fit: contain;
    object-position: center;

    background: #2c2522;
  }

  .portfolio-card figcaption {
    position: static;
    left: auto;
    right: auto;
    bottom: auto;

    margin: 0;
    padding: 12px 14px;

    border-radius: 0;
    background: #ffffff;
    color: #2c2522;
    backdrop-filter: none;
  }

  .portfolio-card figcaption span {
    color: #a26660;
  }

  .portfolio-card figcaption strong {
    color: #2c2522;
  }

  /* Konten lain */
  .booked-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .price-item {
    grid-template-columns: 1fr;
  }

  .price-item-end {
    width: 100%;
    min-width: 0;
    justify-content: space-between;
  }

  .contact-card {
    padding: 27px 18px;
  }
}

/* ==================================================
   HOMEPAGE COMPACT SPACING
   ================================================== */

/* Desktop dan tablet */
@media (min-width: 681px) {
  /* Hero */
  .public-hero {
    min-height: auto !important;
    margin: 0 auto !important;
    padding-top: 48px !important;
    padding-bottom: 16px !important;
  }

  /* Jadwal */
  section.public-section.schedule-section {
    margin: 0 auto !important;
    padding-top: 18px !important;
    padding-bottom: 30px !important;
  }

  /* Layanan */
  section.public-section#layanan {
    margin: 0 auto !important;
    padding-top: 28px !important;
    padding-bottom: 50px !important;
  }

  /* Portofolio */
  section.public-section.portfolio-section {
    margin-top: 0 !important;
    padding-top: 52px !important;
    padding-bottom: 52px !important;
  }

  /* Harga */
  section.public-section.price-section {
    padding-top: 48px !important;
    padding-bottom: 48px !important;
  }

  /* Kontak */
  section.public-section.contact-section {
    padding-top: 28px !important;
    padding-bottom: 55px !important;
  }

  .section-heading {
    margin-top: 0 !important;
    margin-bottom: 18px !important;
  }

  .privacy-note {
    margin-top: -7px !important;
    margin-bottom: 16px !important;
  }

  .booked-grid,
  .service-grid,
  .price-list,
  .portfolio-grid {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
}

/* Mobile */
@media (max-width: 680px) {
  .public-hero {
    min-height: auto !important;
    padding-top: 34px !important;
    padding-bottom: 20px !important;
  }

  section.public-section.schedule-section {
    padding-top: 20px !important;
    padding-bottom: 32px !important;
  }

  section.public-section#layanan {
    padding-top: 28px !important;
    padding-bottom: 42px !important;
  }

  section.public-section.portfolio-section,
  section.public-section.price-section {
    padding-top: 42px !important;
    padding-bottom: 42px !important;
  }

  section.public-section.contact-section {
    padding-top: 24px !important;
    padding-bottom: 42px !important;
  }

  .section-heading {
    margin-bottom: 16px !important;
  }
}