/* =====================================================
   PLATFORM PLAZA COFFEE HOMEPAGE
   ORIGINAL DESIGN + CLEAN READABLE TEXT
===================================================== */

:root {
  --pp-page: #f9f5ee;
  --pp-surface: #ffffff;
  --pp-surface-soft: #f4eee4;
  --pp-cream: #ead6b5;

  --pp-brown: #342116;
  --pp-brown-dark: #21130c;
  --pp-brown-soft: #6f5c4f;

  --pp-gold: #d79a22;
  --pp-gold-light: #efc76f;

  --pp-border: rgba(52, 33, 22, 0.12);
  --pp-border-strong: rgba(52, 33, 22, 0.2);

  --pp-white: #ffffff;

  --pp-shadow-small:
    0 12px 30px rgba(48, 31, 20, 0.08);

  --pp-shadow-medium:
    0 24px 60px rgba(48, 31, 20, 0.13);
}

/* =====================================================
   PAGE AND HERO
===================================================== */

html {
  scroll-behavior: smooth;
}

body.coffee-page.coffee-home-page {
  width: 100% !important;
  height: auto !important;
  min-height: 100vh !important;

  margin: 0 !important;

  overflow-x: hidden !important;
  overflow-y: auto !important;

  background: var(--pp-page) !important;
}

body.pp-map-is-open {
  overflow: hidden !important;
}

body.coffee-page.coffee-home-page .coffee-hero {
  width: 100% !important;
  height: 100vh !important;
  min-height: 620px !important;

  position: relative !important;
  flex: none !important;

  overflow: hidden !important;

  /*
   * Warm fallback prevents a strong black flash
   * while the original hero image loads.
   */
  background-color: #b5a69b !important;
  background-image: url("/images/shopbg3.png") !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  background-size: cover !important;
}

/* =====================================================
   COFFEE MESSAGE
===================================================== */

.pp-coffee-message {
  width: 100%;
  min-height: 250px;

  padding: 50px 24px;

  position: relative;
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--pp-brown);

  background:
    radial-gradient(
      circle at 8% 12%,
      rgba(255, 255, 255, 0.9),
      transparent 43%
    ),
    linear-gradient(
      135deg,
      #fffdf9,
      #efe0c8
    );
}

.pp-coffee-message::before {
  content: "";

  width: 380px;
  height: 380px;

  position: absolute;
  left: -280px;
  bottom: -300px;

  border:
    44px solid
    rgba(83, 57, 38, 0.025);

  border-radius: 50%;
}

.pp-coffee-message::after {
  content: "";

  width: 320px;
  height: 320px;

  position: absolute;
  top: -250px;
  right: -180px;

  border:
    42px solid
    rgba(83, 57, 38, 0.025);

  border-radius: 50%;
}

.pp-coffee-message-inner {
  width: min(900px, 100%);

  margin: 0 auto;

  position: relative;
  z-index: 2;

  text-align: center;
}

.pp-coffee-message-kicker {
  margin: 0 0 14px;

  display: block;

  color: var(--pp-brown-soft);

  font-family:
    Arial,
    Helvetica,
    sans-serif;

  font-size: 10px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.18em;

  text-transform: uppercase;
}

.pp-coffee-message h2 {
  max-width: 880px;

  margin: 0 auto;

  color: var(--pp-brown);

  font-family:
    "Brush Script MT",
    "Segoe Script",
    "Lucida Handwriting",
    cursive;

  font-size: clamp(41px, 5vw, 65px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.pp-coffee-message p {
  max-width: 720px;

  margin: 17px auto 0;

  color: var(--pp-brown-soft);

  font-family:
    Arial,
    Helvetica,
    sans-serif;

  font-size: 14px;
  font-weight: 400;
  line-height: 1.65;
}

/* =====================================================
   WORKSPACE PROMOTION BACKGROUND
===================================================== */

.pp-platform-promo {
  width: 100%;

  padding: 76px 24px;

  position: relative;
  isolation: isolate;
  overflow: hidden;

  background:
    radial-gradient(
      circle at 5% 5%,
      rgba(255, 255, 255, 0.92),
      transparent 34%
    ),
    linear-gradient(
      135deg,
      #fbf8f2,
      #ecddc5
    );
}

.pp-platform-promo-decoration {
  position: absolute;
  z-index: -1;

  pointer-events: none;

  border-radius: 50%;
}

.pp-platform-promo-decoration-one {
  width: 430px;
  height: 430px;

  right: -250px;
  bottom: -310px;

  border:
    48px solid
    rgba(67, 43, 28, 0.025);
}

.pp-platform-promo-decoration-two {
  width: 210px;
  height: 210px;

  top: 40px;
  left: -150px;

  background:
    rgba(255, 255, 255, 0.4);
}

.pp-platform-promo-container {
  width: min(1160px, 100%);

  margin: 0 auto;
}

/* =====================================================
   PROMOTION CARD
===================================================== */

.pp-platform-promo-card {
  width: 100%;
  min-height: 440px;

  overflow: hidden;

  display: grid;

  grid-template-columns:
    minmax(0, 1.35fr)
    minmax(360px, 0.8fr);

  background: var(--pp-surface);

  border:
    1px solid
    var(--pp-border);

  border-radius: 24px;

  box-shadow: var(--pp-shadow-medium);
}

/* =====================================================
   PROMOTION IMAGE
===================================================== */

.pp-platform-promo-image {
  min-height: 440px;

  position: relative;
  overflow: hidden;

  background: var(--pp-surface-soft);
}

.pp-platform-promo-image img {
  width: 100%;
  height: 100%;

  position: absolute;
  inset: 0;

  display: block;

  object-fit: cover;
  object-position: center center;

  transition:
    transform 700ms ease;
}

.pp-platform-promo-card:hover
.pp-platform-promo-image img {
  transform: scale(1.02);
}

.pp-platform-promo-image-overlay {
  position: absolute;
  inset: 0;

  pointer-events: none;

  background:
    linear-gradient(
      0deg,
      rgba(30, 18, 11, 0.36),
      transparent 46%
    );
}

/* =====================================================
   CLICKABLE LOCATION
===================================================== */

.pp-platform-promo-location {
  width: fit-content;
  max-width: min(290px, calc(100% - 40px));

  padding: 9px 11px;

  position: absolute;
  left: 22px;
  bottom: 20px;

  display: inline-flex;
  align-items: center;
  gap: 9px;

  color: var(--pp-white);

  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.2),
      rgba(255, 255, 255, 0.08)
    );

  border:
    1px solid
    rgba(255, 255, 255, 0.46);

  border-radius: 10px;

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.32),
    0 8px 22px rgba(24, 14, 8, 0.16);

  backdrop-filter:
    blur(10px)
    saturate(125%);

  -webkit-backdrop-filter:
    blur(10px)
    saturate(125%);

  text-decoration: none;

  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.pp-platform-promo-location:hover {
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.28),
      rgba(255, 255, 255, 0.12)
    );

  border-color:
    rgba(255, 255, 255, 0.68);

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    0 11px 27px rgba(24, 14, 8, 0.2);

  transform: translateY(-2px);
}

.pp-platform-promo-location-icon {
  width: 31px;
  height: 31px;

  flex: 0 0 31px;

  display: grid;
  place-items: center;

  color: var(--pp-white);

  background:
    rgba(215, 154, 34, 0.76);

  border:
    1px solid
    rgba(255, 255, 255, 0.38);

  border-radius: 8px;

  box-shadow:
    inset 0 1px 0
    rgba(255, 255, 255, 0.32);
}

.pp-platform-promo-location-icon svg {
  width: 16px;
  height: 16px;

  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pp-platform-promo-location-copy {
  min-width: 0;

  display: grid;
  gap: 3px;
}

.pp-platform-promo-location-copy strong {
  color: var(--pp-white);

  font-family:
    Arial,
    Helvetica,
    sans-serif;

  font-size: 10px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.06em;

  text-shadow:
    0 1px 7px
    rgba(0, 0, 0, 0.3);

  text-transform: uppercase;
}

.pp-platform-promo-location-copy small {
  overflow: hidden;

  color:
    rgba(255, 255, 255, 0.86);

  font-family:
    Arial,
    Helvetica,
    sans-serif;

  font-size: 10px;
  font-weight: 500;
  line-height: 1.3;

  text-overflow: ellipsis;
  white-space: nowrap;

  text-shadow:
    0 1px 7px
    rgba(0, 0, 0, 0.28);
}

.pp-platform-promo-location-arrow {
  width: 15px;
  height: 15px;

  margin-left: 2px;

  flex: 0 0 auto;

  color: var(--pp-white);

  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;

  transition:
    transform 180ms ease;
}

.pp-platform-promo-location:hover
.pp-platform-promo-location-arrow {
  transform: translateX(3px);
}

/* =====================================================
   PROMOTION CONTENT
===================================================== */

.pp-platform-promo-content {
  min-width: 0;

  padding:
    50px
    45px
    43px;

  position: relative;
  overflow: hidden;

  display: flex;
  flex-direction: column;
  justify-content: center;

  color: var(--pp-brown);

  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(224, 180, 92, 0.15),
      transparent 34%
    ),
    linear-gradient(
      145deg,
      #ffffff,
      #fbf6ed
    );
}

.pp-platform-promo-content::before {
  content: "";

  width: 190px;
  height: 190px;

  position: absolute;

  top: -135px;
  right: -85px;

  border:
    25px solid
    rgba(66, 42, 27, 0.025);

  border-radius: 50%;
}

.pp-platform-promo-content::after {
  content: "";

  width: 88px;
  height: 3px;

  position: absolute;

  left: 45px;
  bottom: 0;

  background:
    linear-gradient(
      90deg,
      var(--pp-gold),
      transparent
    );
}

.pp-platform-promo-kicker {
  width: fit-content;

  margin: 0 0 20px;
  padding: 8px 11px;

  position: relative;
  z-index: 2;

  display: inline-flex;
  align-items: center;

  color: #9b6916;

  background:
    rgba(223, 166, 55, 0.11);

  border:
    1px solid
    rgba(204, 143, 29, 0.18);

  border-radius: 999px;

  font-family:
    Arial,
    Helvetica,
    sans-serif;

  font-size: 9px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.15em;

  text-transform: uppercase;
}

.pp-platform-promo-content h2 {
  max-width: 470px;

  margin: 0;

  position: relative;
  z-index: 2;

  color: var(--pp-brown-dark);

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size:
    clamp(
      36px,
      3.5vw,
      52px
    );

  font-weight: 700;
  line-height: 1.03;
  letter-spacing: -0.045em;
}

.pp-platform-promo-content > p {
  margin:
    22px
    0
    0;

  position: relative;
  z-index: 2;

  color: var(--pp-brown-soft);

  font-family:
    Arial,
    Helvetica,
    sans-serif;

  font-size: 14px;
  font-weight: 400;
  line-height: 1.72;
}

/* =====================================================
   SERVICE LABELS
===================================================== */

.pp-platform-promo-highlights {
  margin-top: 24px;

  position: relative;
  z-index: 2;

  display: flex;
  align-items: center;
  flex-wrap: wrap;

  gap: 8px;
}

.pp-platform-promo-highlights span {
  min-height: 32px;
  padding:
    8px
    10px;

  display: inline-flex;
  align-items: center;

  color: var(--pp-brown-soft);
  background: var(--pp-white);

  border:
    1px solid
    var(--pp-border);

  border-radius: 7px;

  font-family:
    Arial,
    Helvetica,
    sans-serif;

  font-size: 10px;
  font-weight: 700;
  line-height: 1.2;

  box-shadow:
    0 5px 15px
    rgba(48, 31, 20, 0.04);
}

/* =====================================================
   PROMOTION BUTTONS
===================================================== */

.pp-platform-promo-actions {
  margin-top: 27px;

  position: relative;
  z-index: 2;

  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;

  gap: 9px;
}

.pp-platform-promo-button {
  width: auto;
  min-width: 0;
  max-width: none;
  min-height: 40px;

  padding:
    0
    15px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 8px;

  color: var(--pp-brown-dark);

  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.12),
      rgba(255, 255, 255, 0.03)
    );

  border:
    1px solid
    rgba(52, 33, 22, 0.2);

  border-radius: 9px;

  box-shadow:
    inset 0 1px 0
    rgba(255, 255, 255, 0.55),
    0 6px 16px
    rgba(48, 31, 20, 0.05);

  backdrop-filter:
    blur(8px)
    saturate(120%);

  -webkit-backdrop-filter:
    blur(8px)
    saturate(120%);

  font-family:
    Arial,
    Helvetica,
    sans-serif;

  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.01em;

  text-align: center;
  text-decoration: none;
  white-space: nowrap;

  transition:
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.pp-platform-promo-button svg {
  width: 14px;
  height: 14px;

  flex: 0 0 auto;

  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;

  transition:
    transform 180ms ease;
}

.pp-platform-promo-button-primary {
  color: #7c5312;

  background:
    linear-gradient(
      135deg,
      rgba(239, 199, 111, 0.18),
      rgba(215, 154, 34, 0.07)
    );

  border-color:
    rgba(198, 132, 18, 0.42);
}

.pp-platform-promo-button-primary:hover {
  color: #67420b;

  background:
    linear-gradient(
      135deg,
      rgba(239, 199, 111, 0.28),
      rgba(215, 154, 34, 0.12)
    );

  border-color:
    rgba(183, 116, 10, 0.62);

  box-shadow:
    inset 0 1px 0
    rgba(255, 255, 255, 0.7),
    0 8px 19px
    rgba(180, 118, 17, 0.1);

  transform: translateY(-2px);
}

.pp-platform-promo-button-primary:hover svg {
  transform: translateX(3px);
}

.pp-platform-promo-button-secondary {
  color: var(--pp-brown);

  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.1),
      rgba(255, 255, 255, 0.02)
    );

  border-color:
    rgba(52, 33, 22, 0.2);
}

.pp-platform-promo-button-secondary:hover {
  color: var(--pp-brown-dark);

  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.2),
      rgba(255, 255, 255, 0.06)
    );

  border-color:
    rgba(52, 33, 22, 0.34);

  box-shadow:
    inset 0 1px 0
    rgba(255, 255, 255, 0.72),
    0 8px 19px
    rgba(48, 31, 20, 0.07);

  transform: translateY(-2px);
}

/* =====================================================
   INSTAGRAM
===================================================== */

.pp-platform-promo-social {
  margin-top: 27px;
  padding-top: 21px;

  position: relative;
  z-index: 2;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 15px;

  border-top:
    1px solid
    var(--pp-border);
}

.pp-platform-promo-social > span {
  color:
    rgba(52, 33, 22, 0.52);

  font-family:
    Arial,
    Helvetica,
    sans-serif;

  font-size: 9px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.12em;

  text-transform: uppercase;
}

.pp-platform-promo-social a {
  min-width: 0;

  display: inline-flex;
  align-items: center;

  gap: 8px;

  color: var(--pp-brown);

  font-family:
    Arial,
    Helvetica,
    sans-serif;

  font-size: 11px;
  line-height: 1.25;

  text-decoration: none;

  transition:
    color 180ms ease,
    transform 180ms ease;
}

.pp-platform-promo-social a:hover {
  color: var(--pp-gold);

  transform: translateY(-1px);
}

.pp-platform-promo-social svg {
  width: 18px;
  height: 18px;

  flex: 0 0 auto;

  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pp-platform-promo-social strong {
  min-width: 0;
  overflow: hidden;

  font-size: 11px;
  font-weight: 700;

  text-overflow: ellipsis;
  white-space: nowrap;
}

.pp-icon-fill {
  fill: currentColor;
  stroke: none;
}

/* =====================================================
   LIGHT PREMIUM FOOTER
===================================================== */

.pp-site-footer {
  width: 100%;

  color: var(--pp-brown);

  background:
    linear-gradient(
      180deg,
      #ffffff,
      #f7f1e8
    );

  border-top:
    1px solid
    var(--pp-border);
}

.pp-footer-main {
  width:
    min(
      1280px,
      calc(100% - 48px)
    );

  min-height: 122px;

  margin:
    0
    auto;

  padding:
    27px
    0;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 45px;
}

.pp-footer-logo {
  flex:
    0
    0
    auto;

  display: inline-flex;
  align-items: center;

  text-decoration: none;
}

.pp-footer-logo img {
  width: 165px;
  height: 57px;

  display: block;

  object-fit: contain;
  object-position: left center;

  filter:
    brightness(0)
    saturate(100%)
    invert(13%)
    sepia(18%)
    saturate(1374%)
    hue-rotate(338deg)
    brightness(91%)
    contrast(92%);
}

.pp-footer-links {
  min-width: 0;

  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;

  gap:
    18px
    27px;
}

.pp-footer-links a {
  min-width: 0;
  min-height: 34px;

  display: inline-flex;
  align-items: center;

  gap: 7px;

  color: var(--pp-brown-soft);

  font-family:
    Arial,
    Helvetica,
    sans-serif;

  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;

  text-decoration: none;

  transition:
    color 180ms ease,
    transform 180ms ease;
}

.pp-footer-links a:hover {
  color: var(--pp-gold);

  transform: translateY(-2px);
}

.pp-footer-links svg {
  width: 18px;
  height: 18px;

  flex: 0 0 auto;

  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pp-footer-links a span {
  max-width: 210px;

  overflow: hidden;

  color: inherit;

  text-overflow: ellipsis;
  white-space: nowrap;
}

/* =====================================================
   FOOTER BOTTOM
===================================================== */

.pp-footer-bottom {
  width:
    min(
      1280px,
      calc(100% - 48px)
    );

  min-height: 50px;

  margin:
    0
    auto;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 20px;

  border-top:
    1px solid
    var(--pp-border);
}

.pp-footer-bottom p {
  margin: 0;

  color:
    rgba(52, 33, 22, 0.56);

  font-family:
    Arial,
    Helvetica,
    sans-serif;

  font-size: 10px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.02em;
}

/* =====================================================
   MAP MODAL
===================================================== */

.pp-map-modal[hidden] {
  display: none !important;
}

.pp-map-modal {
  position: fixed;
  z-index: 99999;

  inset: 0;

  padding: 22px;

  display: grid;
  place-items: center;

  opacity: 0;

  transition:
    opacity 220ms ease;
}

.pp-map-modal.is-visible {
  opacity: 1;
}

.pp-map-modal-backdrop {
  position: absolute;
  inset: 0;

  background:
    rgba(24, 14, 8, 0.64);

  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
}

.pp-map-modal-dialog {
  width:
    min(
      920px,
      100%
    );

  max-height:
    calc(
      100vh - 44px
    );

  position: relative;
  z-index: 2;

  overflow: hidden;

  background: var(--pp-white);

  border:
    1px solid
    rgba(255, 255, 255, 0.42);

  border-radius: 20px;

  box-shadow:
    0 30px 90px
    rgba(20, 11, 6, 0.34);

  transform:
    translateY(18px)
    scale(0.98);

  transition:
    transform 220ms ease;
}

.pp-map-modal.is-visible
.pp-map-modal-dialog {
  transform:
    translateY(0)
    scale(1);
}

.pp-map-modal-header {
  min-height: 86px;

  padding:
    19px
    21px
    18px
    25px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 20px;

  background:
    linear-gradient(
      135deg,
      #ffffff,
      #faf4ea
    );

  border-bottom:
    1px solid
    var(--pp-border);
}

.pp-map-modal-header span {
  margin: 0 0 6px;

  display: block;

  color: var(--pp-gold);

  font-family:
    Arial,
    Helvetica,
    sans-serif;

  font-size: 9px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.15em;

  text-transform: uppercase;
}

.pp-map-modal-header h2 {
  margin: 0;

  color: var(--pp-brown-dark);

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size: 25px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.pp-map-modal-close {
  width: 40px;
  height: 40px;

  padding: 0;

  flex:
    0
    0
    auto;

  display: grid;
  place-items: center;

  color: var(--pp-brown);

  background: var(--pp-white);

  border:
    1px solid
    var(--pp-border);

  border-radius: 50%;

  cursor: pointer;

  transition:
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.pp-map-modal-close:hover {
  color: var(--pp-white);

  background: var(--pp-brown);

  border-color: var(--pp-brown);

  transform: rotate(5deg);
}

.pp-map-modal-close svg {
  width: 18px;
  height: 18px;

  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pp-map-modal-map {
  width: 100%;

  height:
    min(
      54vh,
      520px
    );

  background: var(--pp-surface-soft);
}

.pp-map-modal-map iframe {
  width: 100%;
  height: 100%;

  display: block;

  border: 0;
}

.pp-map-modal-footer {
  min-height: 83px;

  padding:
    16px
    22px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 22px;

  background: var(--pp-white);
}

.pp-map-modal-address {
  min-width: 0;

  display: flex;
  align-items: center;

  gap: 11px;
}

.pp-map-modal-address > svg {
  width: 22px;
  height: 22px;

  flex:
    0
    0
    auto;

  color: var(--pp-gold);

  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pp-map-modal-address div {
  min-width: 0;

  display: grid;
  gap: 4px;
}

.pp-map-modal-address strong {
  overflow: hidden;

  color: var(--pp-brown-dark);

  font-family:
    Arial,
    Helvetica,
    sans-serif;

  font-size: 12px;
  font-weight: 800;
  line-height: 1.3;

  text-overflow: ellipsis;
  white-space: nowrap;
}

.pp-map-modal-address span {
  color: var(--pp-brown-soft);

  font-family:
    Arial,
    Helvetica,
    sans-serif;

  font-size: 11px;
  line-height: 1.35;
}

.pp-map-modal-footer > a {
  min-height: 42px;

  padding:
    0
    16px;

  flex:
    0
    0
    auto;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 9px;

  color: var(--pp-brown-dark);

  background:
    linear-gradient(
      135deg,
      #f0c96d,
      #dea32e
    );

  border:
    1px solid
    #dda12d;

  border-radius: 8px;

  font-family:
    Arial,
    Helvetica,
    sans-serif;

  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;

  text-decoration: none;

  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.pp-map-modal-footer > a:hover {
  background:
    linear-gradient(
      135deg,
      #f4d486,
      #e5ae3e
    );

  box-shadow:
    0 10px 22px
    rgba(200, 139, 28, 0.2);

  transform: translateY(-2px);
}

.pp-map-modal-footer > a svg {
  width: 16px;
  height: 16px;

  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* =====================================================
   FOCUS
===================================================== */

.pp-platform-promo-location:focus-visible,
.pp-platform-promo-button:focus-visible,
.pp-platform-promo-social a:focus-visible,
.pp-footer-links a:focus-visible,
.pp-footer-logo:focus-visible,
.pp-map-modal-close:focus-visible,
.pp-map-modal-footer a:focus-visible {
  outline:
    2px solid
    var(--pp-gold);

  outline-offset: 4px;
}

/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1050px) {
  .pp-platform-promo {
    padding:
      62px
      20px;
  }

  .pp-platform-promo-card {
    grid-template-columns:
      minmax(0, 1.08fr)
      minmax(330px, 0.92fr);
  }

  .pp-platform-promo-content {
    padding:
      43px
      34px
      37px;
  }

  .pp-platform-promo-content::after {
    left: 34px;
  }

  .pp-footer-main {
    align-items: flex-start;
    flex-direction: column;

    gap: 22px;
  }

  .pp-footer-links {
    width: 100%;

    justify-content: flex-start;
  }
}

/* =====================================================
   MOBILE AND SMALL TABLETS
===================================================== */

@media (max-width: 760px) {
  .pp-platform-promo {
    padding:
      48px
      15px;
  }

  .pp-platform-promo-card {
    min-height: 0;

    grid-template-columns: 1fr;

    border-radius: 19px;
  }

  .pp-platform-promo-image {
    min-height: 330px;
  }

  .pp-platform-promo-content {
    padding:
      39px
      29px
      33px;
  }

  .pp-platform-promo-content::after {
    left: 29px;
  }

  .pp-platform-promo-actions {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;

    gap: 8px;
  }

  .pp-platform-promo-button {
    width: auto;
    min-width: 0;
    max-width: none;
  }

  .pp-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;

    padding:
      12px
      0;

    gap: 4px;
  }

  .pp-map-modal-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .pp-map-modal-footer > a {
    width: 100%;
  }
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 650px) {
  body.coffee-page.coffee-home-page
  .coffee-hero {
    height: 100svh !important;
    min-height: 100svh !important;

    background-color: #b4a498 !important;

    background-image:
      url("/images/mobilebg1.png") !important;

    background-position:
      center bottom !important;

    background-size:
      cover !important;
  }

  .pp-coffee-message {
    min-height: 225px;

    padding:
      43px
      17px;
  }

  .pp-coffee-message-kicker {
    margin-bottom: 11px;

    font-size: 9px;
  }

  .pp-coffee-message h2 {
    font-family:
      "Brush Script MT",
      "Segoe Script",
      "Lucida Handwriting",
      cursive;

    font-size:
      clamp(
        34px,
        11vw,
        48px
      );

    font-weight: 400;
    line-height: 1.08;
  }

  .pp-coffee-message p {
    margin-top: 13px;

    font-size: 12px;
    line-height: 1.6;
  }

  .pp-platform-promo {
    padding:
      39px
      11px
      43px;
  }

  .pp-platform-promo-card {
    border-radius: 15px;
  }

  .pp-platform-promo-image {
    min-height: 255px;
  }

  .pp-platform-promo-location {
    width: fit-content;
    max-width: calc(100% - 28px);

    right: auto;
    left: 14px;
    bottom: 14px;

    padding:
      8px
      9px;
  }

  .pp-platform-promo-location-icon {
    width: 29px;
    height: 29px;
    flex-basis: 29px;
  }

  .pp-platform-promo-location-copy strong {
    font-size: 9px;
  }

  .pp-platform-promo-location-copy small {
    font-size: 9px;
  }

  .pp-platform-promo-content {
    padding:
      32px
      22px
      27px;
  }

  .pp-platform-promo-content::after {
    left: 22px;
  }

  .pp-platform-promo-kicker {
    margin-bottom: 16px;

    padding:
      7px
      9px;

    font-size: 8px;
  }

  .pp-platform-promo-content h2 {
    font-size:
      clamp(
        32px,
        10vw,
        43px
      );
  }

  .pp-platform-promo-content > p {
    margin-top: 17px;

    font-size: 12.5px;
    line-height: 1.7;
  }

  .pp-platform-promo-highlights {
    margin-top: 20px;
  }

  .pp-platform-promo-highlights span {
    min-height: 31px;

    font-size: 9px;
  }

  .pp-platform-promo-actions {
    margin-top: 23px;

    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;

    gap: 8px;
  }

  .pp-platform-promo-button {
    width: auto;
    min-width: 0;
    max-width: none;
    min-height: 38px;

    padding:
      0
      12px;

    font-size: 10px;
  }

  .pp-platform-promo-button svg {
    width: 13px;
    height: 13px;
  }

  .pp-platform-promo-social {
    margin-top: 24px;
    padding-top: 19px;

    align-items: flex-start;
    flex-direction: column;

    gap: 11px;
  }

  .pp-platform-promo-social > span {
    font-size: 8.5px;
  }

  .pp-platform-promo-social a,
  .pp-platform-promo-social strong {
    font-size: 10.5px;
  }

  .pp-platform-promo-social strong {
    max-width: 230px;
  }

  .pp-footer-main {
    width:
      calc(
        100% - 30px
      );

    min-height: 0;

    padding:
      27px
      0
      23px;

    gap: 23px;
  }

  .pp-footer-logo img {
    width: 143px;
    height: 49px;
  }

  .pp-footer-links {
    display: grid;

    grid-template-columns:
      repeat(
        2,
        minmax(0, 1fr)
      );

    gap:
      18px
      13px;
  }

  .pp-footer-links a {
    min-width: 0;

    align-items: flex-start;

    font-size: 11px;
  }

  .pp-footer-links svg {
    width: 17px;
    height: 17px;
  }

  .pp-footer-links a span {
    max-width: 150px;

    overflow-wrap: anywhere;

    white-space: normal;
  }

  .pp-footer-bottom {
    width:
      calc(
        100% - 30px
      );
  }

  .pp-footer-bottom p {
    font-size: 9.5px;
  }

  .pp-map-modal {
    padding: 10px;
  }

  .pp-map-modal-dialog {
    max-height:
      calc(
        100vh - 20px
      );

    border-radius: 15px;
  }

  .pp-map-modal-header {
    min-height: 75px;

    padding:
      16px
      16px
      15px
      18px;
  }

  .pp-map-modal-header span {
    font-size: 8px;
  }

  .pp-map-modal-header h2 {
    font-size: 20px;
  }

  .pp-map-modal-close {
    width: 36px;
    height: 36px;
  }

  .pp-map-modal-map {
    height: 48vh;
  }

  .pp-map-modal-footer {
    padding:
      15px
      17px;
  }

  .pp-map-modal-address strong {
    font-size: 11px;
  }

  .pp-map-modal-address span {
    font-size: 10px;
  }

  .pp-map-modal-footer > a {
    font-size: 10.5px;
  }
}

/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 390px) {
  .pp-platform-promo-image {
    min-height: 225px;
  }

  .pp-platform-promo-content {
    padding-right: 19px;
    padding-left: 19px;
  }

  .pp-platform-promo-content::after {
    left: 19px;
  }

  .pp-platform-promo-content > p {
    font-size: 12px;
  }

  .pp-platform-promo-button {
    width: auto;
    min-height: 36px;

    padding:
      0
      10px;

    font-size: 9.5px;
  }

  .pp-footer-links {
    grid-template-columns: 1fr;
  }

  .pp-footer-links a {
    font-size: 10.5px;
  }

  .pp-footer-links a span {
    max-width: 260px;
  }
}

/* =====================================================
   MOBILE LANDSCAPE
===================================================== */

@media (max-height: 540px)
  and (orientation: landscape)
  and (max-width: 950px) {

  body.coffee-page.coffee-home-page
  .coffee-hero {
    height: 100svh !important;
    min-height: 100svh !important;

    background-image:
      url("/images/shopbg3.png") !important;

    background-position:
      center center !important;
  }

  .pp-map-modal-map {
    height: 45vh;
  }
}

/* =====================================================
   PRINT
===================================================== */

@media print {
  .pp-map-modal {
    display: none !important;
  }

  .pp-coffee-message,
  .pp-platform-promo,
  .pp-site-footer,
  .pp-platform-promo-card,
  .pp-platform-promo-content {
    color: #000000;

    background: #ffffff;

    box-shadow: none;
  }
}

/* =====================================================
   REDUCED MOTION
===================================================== */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .pp-platform-promo-image img,
  .pp-platform-promo-location,
  .pp-platform-promo-location-arrow,
  .pp-platform-promo-button,
  .pp-platform-promo-button svg,
  .pp-platform-promo-social a,
  .pp-footer-links a,
  .pp-map-modal,
  .pp-map-modal-dialog,
  .pp-map-modal-close,
  .pp-map-modal-footer > a {
    transition: none;
  }
}