/* Sablefir Supper House
   Website concept by Protean Hollow LLC
   Self contained. No shared stylesheet, no framework. */

:root {
  --ground: #14110f;
  --ground-soft: #1d1815;
  --surface: #f2e9dc;
  --surface-warm: #e9dfd0;
  --ember: #d2622a;
  --ember-deep: #b04d1c;
  --ink-on-dark: #f2e9dc;
  --ink-on-dark-quiet: rgba(242, 233, 220, 0.62);
  --ink-on-cream: #221c17;
  --ink-on-cream-quiet: rgba(34, 28, 23, 0.68);
  --wrap: 1100px;
  --gutter: clamp(1.25rem, 5vw, 3.5rem);
}

*,
*::before,
*::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ground);
  color: var(--ink-on-dark);
  font-family: "Lora", Georgia, "Times New Roman", serif;
  font-size: clamp(1.0625rem, 0.95rem + 0.5vw, 1.1875rem);
  line-height: 1.85;
  font-weight: 400;
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

figure { margin: 0; }

a { color: inherit; }

h1, h2, h3, h4 {
  font-family: "Fraunces", Georgia, serif;
  font-variation-settings: "opsz" 144, "SOFT" 0, "WONK" 1;
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.015em;
  margin: 0 0 0.6em;
  text-wrap: balance;
}

p { margin: 0 0 1.35em; }
p:last-child { margin-bottom: 0; }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ember);
  color: var(--ground);
  padding: 0.75rem 1.25rem;
  z-index: 50;
}
.skip:focus { left: 0; }

/* Top bar, sits over the hero, no rules or edges */

.topbar {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 30;
  padding-block: clamp(1.1rem, 3vw, 2rem);
  transition: background 0.3s ease, padding 0.3s ease;
}

/* Once the hero is behind us the bar goes solid and stays put, so the
   reservation path is always one click away. */
.topbar.is-stuck {
  position: fixed;
  background: rgba(20, 17, 15, 0.95);
  padding-block: 0.85rem;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.42);
}

@supports (backdrop-filter: blur(8px)) {
  .topbar.is-stuck {
    background: rgba(20, 17, 15, 0.82);
    backdrop-filter: blur(10px);
  }
}

.topbar.is-stuck .wordmark { font-size: clamp(1.15rem, 0.95rem + 0.7vw, 1.4rem); }

.topbar-inner {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.wordmark {
  font-family: "Fraunces", Georgia, serif;
  font-variation-settings: "opsz" 144, "WONK" 1;
  font-size: clamp(1.35rem, 1rem + 1.2vw, 1.75rem);
  letter-spacing: 0.02em;
  text-decoration: none;
  color: var(--surface);
}

.topnav {
  display: flex;
  gap: clamp(1rem, 3vw, 2.25rem);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.topnav a {
  text-decoration: none;
  color: rgba(242, 233, 220, 0.82);
  padding-block: 0.25rem;
  transition: color 0.2s ease;
}
.topnav a:hover,
.topnav a:focus-visible { color: var(--ember); }

/* Reserve is the business critical action, so it never reads as one of four. */
.nav-reserve { color: var(--ember); }
.nav-reserve:hover,
.nav-reserve:focus-visible { color: var(--surface); }

/* Hero, the one full bleed photograph */

.hero { position: relative; }

.hero-figure {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 2;
  max-height: 88vh;
  background: var(--ground-soft);
  overflow: hidden;
}

.hero-figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(20, 17, 15, 0.9) 0%, rgba(20, 17, 15, 0.28) 44%, rgba(20, 17, 15, 0.42) 100%);
}

.hero-copy {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 10;
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
  padding-bottom: clamp(2.5rem, 7vw, 5.5rem);
}

.hero-copy h1 {
  font-size: clamp(2.9rem, 1.6rem + 7vw, 6.4rem);
  font-variation-settings: "opsz" 144, "SOFT" 0, "WONK" 1;
  font-weight: 300;
  margin-bottom: 0.35em;
  color: var(--surface);
}

.hero-lede {
  max-width: 34ch;
  font-size: clamp(1.05rem, 0.95rem + 0.5vw, 1.3rem);
  color: rgba(242, 233, 220, 0.86);
  margin-bottom: 2rem;
}

.eyebrow {
  font-family: "Lora", Georgia, serif;
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 1.5rem;
}

.band-cream .eyebrow { color: var(--ember-deep); }

[hidden] { display: none !important; }

/* Slim strip under the hero. The three facts a diner needs before anything else. */

.service-strip {
  background: var(--ground-soft);
  color: var(--ink-on-dark-quiet);
  padding-block: 1.15rem;
}

.service-strip p {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1.5;
}

.service-strip span + span::before {
  content: "/";
  color: var(--ember);
  margin: 0 0.9rem;
}

/* Buttons, flat, square, no card language */

.btn {
  display: inline-block;
  background: var(--ember);
  color: #14110f;
  font-family: "Lora", Georgia, serif;
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1.05rem 2.4rem;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.btn:hover,
.btn:focus-visible { background: var(--surface); color: var(--ground); }

.btn-dark { background: var(--ground); color: var(--surface); }
.btn-dark:hover,
.btn-dark:focus-visible { background: var(--ember-deep); color: var(--surface); }

.link-quiet {
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink-on-dark-quiet);
  transition: color 0.2s ease;
}
.link-quiet:hover,
.link-quiet:focus-visible { color: var(--ember); }

/* Conversion band. Deliberately centred, which nothing else on the page is,
   so it reads as a pause between two heavy sections rather than a new one. */

.cta-band {
  background: var(--ground-soft);
  padding-block: clamp(3rem, 7vw, 4.25rem);
  text-align: center;
}

.cta-band .eyebrow { margin-bottom: 1rem; }

.cta-line {
  font-family: "Fraunces", Georgia, serif;
  font-variation-settings: "opsz" 144, "SOFT" 0, "WONK" 1;
  font-weight: 300;
  font-size: clamp(1.35rem, 1rem + 1.9vw, 2.2rem);
  line-height: 1.15;
  color: var(--surface);
  max-width: 24ch;
  margin: 0 auto 2rem;
}

.cta-actions {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.25rem 2.5rem;
}

/* Bands */

.band { padding-block: clamp(4.5rem, 12vw, 10rem); }

/* The lower half carries denser information, so it breathes a little less. */
.band-tight { padding-block: clamp(3.75rem, 9.5vw, 8rem); }

.band-cream {
  background: var(--surface);
  color: var(--ink-on-cream);
}

.band-dark {
  background: var(--ground);
  color: var(--ink-on-dark);
}

.section-head {
  font-size: clamp(2.1rem, 1.3rem + 3.4vw, 4rem);
  max-width: 18ch;
  margin-bottom: 1rem;
}

/* Asymmetric editorial splits. Never equal columns. */

.split {
  display: grid;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: start;
}

.split-major h2 {
  font-size: clamp(1.9rem, 1.2rem + 2.9vw, 3.4rem);
  max-width: 20ch;
  margin-bottom: 0.7em;
}

.split-major p { max-width: 62ch; }

.split-minor figcaption {
  margin-top: 1rem;
  font-size: 0.86rem;
  font-style: italic;
  color: var(--ink-on-cream-quiet);
}

.band-dark .split-minor figcaption { color: var(--ink-on-dark-quiet); }

.split-minor img { background: var(--ground-soft); }

#story .split-minor img { aspect-ratio: 2 / 3; }

/* Full bleed breakout with a pull quote */

.breakout {
  position: relative;
  background: var(--ground);
}

.breakout-figure {
  width: 100%;
  aspect-ratio: 3 / 2;
  max-height: 70vh;
  overflow: hidden;
  position: relative;
  background: var(--ground-soft);
}

.breakout-figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(20, 17, 15, 0.88) 0%, rgba(20, 17, 15, 0.35) 62%, rgba(20, 17, 15, 0.2) 100%);
}

.breakout-quote {
  position: absolute;
  inset: 0;
  z-index: 5;
  margin: 0;
  display: grid;
  align-content: center;
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.breakout-quote p {
  font-family: "Fraunces", Georgia, serif;
  font-variation-settings: "opsz" 144, "SOFT" 0, "WONK" 1;
  font-weight: 300;
  font-size: clamp(1.6rem, 0.9rem + 3.4vw, 3.4rem);
  line-height: 1.1;
  max-width: 17ch;
  color: var(--surface);
  margin-bottom: 1.2rem;
}

.breakout-quote cite {
  font-style: normal;
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ember);
}

/* Plates, alternating asymmetry */

.plates .section-head { margin-bottom: clamp(2.5rem, 7vw, 5rem); }

.plate { margin-bottom: clamp(3.5rem, 9vw, 7rem); }
.plate:last-child { margin-bottom: 0; }

.plate .split-minor img { aspect-ratio: 1 / 1; }

.plate h3 {
  font-size: clamp(1.5rem, 1.1rem + 1.8vw, 2.4rem);
  margin-bottom: 0.5em;
}

.plate .split-major {
  align-self: center;
  max-width: 46ch;
}

.plate p { color: var(--ink-on-dark-quiet); }

/* Menu, typeset as an editorial list with leader dots */

.menu-note {
  max-width: 58ch;
  color: var(--ink-on-cream-quiet);
  margin-bottom: 0;
}

/* Service switch. Typographic, not a control: no box, no fill, just weight
   and an ember rule under the live one. Hidden entirely without scripting,
   where both services simply stay on the page. */

.menu-switch { display: none; }

.js .menu-switch {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.75rem, 5vw, 3rem);
  margin-top: clamp(2.25rem, 5vw, 3.25rem);
}

.menu-switch button {
  position: relative;
  background: none;
  border: 0;
  border-radius: 0;
  padding: 0 0 0.6rem;
  cursor: pointer;
  font-family: "Fraunces", Georgia, serif;
  font-variation-settings: "opsz" 144, "WONK" 1;
  font-weight: 400;
  font-size: clamp(1.6rem, 1.1rem + 1.9vw, 2.5rem);
  line-height: 1.1;
  color: rgba(34, 28, 23, 0.34);
  transition: color 0.2s ease;
}

.menu-switch button::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 2px;
  background: var(--ember-deep);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.menu-switch button:hover { color: rgba(34, 28, 23, 0.62); }

.menu-switch button.is-active { color: var(--ink-on-cream); }
.menu-switch button.is-active::after { transform: scaleX(1); }

.menu-switch button:focus-visible { outline: 2px solid var(--ember-deep); outline-offset: 6px; }

/* With the switch live the service headings are redundant, but they stay in
   the document for screen readers and for the no script case. */
.js .menu-service {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.menu-panel + .menu-panel { margin-top: clamp(3rem, 8vw, 5.5rem); }
.js .menu-panel + .menu-panel { margin-top: 0; }
.menu-panel:focus { outline: none; }

.menu-body {
  display: grid;
  gap: clamp(3rem, 8vw, 6rem);
  margin-top: clamp(2.5rem, 6vw, 4rem);
  align-items: start;
}

.menu-service {
  font-size: clamp(1.8rem, 1.2rem + 2.2vw, 2.9rem);
  margin-bottom: 1.4rem;
}

.menu-course {
  font-family: "Lora", Georgia, serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ember-deep);
  margin: 2.75rem 0 1.35rem;
}

.menu-col > .menu-course:first-of-type { margin-top: 2rem; }

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

.menu-list li { margin-bottom: 1.6rem; }
.menu-list li:last-child { margin-bottom: 0; }

.menu-line {
  display: flex;
  align-items: flex-end;
  gap: 0.6rem;
  margin: 0 0 0.28rem;
  font-family: "Fraunces", Georgia, serif;
  font-variation-settings: "opsz" 96, "WONK" 1;
  font-weight: 500;
  font-size: clamp(1.1rem, 1rem + 0.5vw, 1.35rem);
  line-height: 1.25;
}

.menu-name { flex: 0 1 auto; }

.leader {
  flex: 1 1 auto;
  min-width: 1.5rem;
  height: 2px;
  margin-bottom: 0.42em;
  background-image: repeating-linear-gradient(to right, currentColor 0 2px, transparent 2px 7px);
  opacity: 0.42;
}

.menu-price { flex: 0 0 auto; font-variant-numeric: lining-nums tabular-nums; }

.menu-desc {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--ink-on-cream-quiet);
  max-width: 46ch;
}

.menu-fineprint {
  margin-top: 3rem;
  font-size: 0.9rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--ink-on-cream-quiet);
  max-width: 44ch;
}

/* Arrival. A second full bleed break, shorter than the hearth one, so the
   photographic rhythm carries through to Visit instead of stopping at the menu. */

.arrival {
  position: relative;
  background: var(--ground);
}

.arrival-figure {
  width: 100%;
  aspect-ratio: 3 / 2;
  max-height: 56vh;
  overflow: hidden;
  position: relative;
  background: var(--ground-soft);
}

.arrival-figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 17, 15, 0.85) 0%, rgba(20, 17, 15, 0.1) 45%, rgba(20, 17, 15, 0.3) 100%);
}

.arrival-caption {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 5;
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding-inline: var(--gutter);
  padding-bottom: clamp(1.5rem, 4vw, 2.75rem);
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(242, 233, 220, 0.72);
}

/* Visit. The address is set larger than any other heading below the hero,
   so the section still holds on its own. */

.split-major h2.visit-address {
  font-size: clamp(2.2rem, 1.3rem + 3.7vw, 4.2rem);
  line-height: 1.04;
  max-width: 16ch;
  margin-bottom: 1.1em;
}

/* Hours */

.hours h3,
.reserve-aside h3 {
  font-size: 1.5rem;
  margin-bottom: 1.4rem;
}

.hours-list { margin: 0; }

.hours-list > div { margin-bottom: 1.5rem; }
.hours-list > div:last-child { margin-bottom: 0; }

.hours-list dt {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 0.35rem;
}

.hours-list dd {
  margin: 0;
  line-height: 1.6;
  color: var(--ink-on-dark);
}

.contact-lines {
  margin-top: 2rem;
  font-size: clamp(1.05rem, 1rem + 0.4vw, 1.2rem);
  line-height: 2;
}

.contact-lines a {
  text-decoration: none;
  color: var(--ember);
  transition: color 0.2s ease;
}
.contact-lines a:hover,
.contact-lines a:focus-visible { color: var(--surface); }

/* Reservation request. Concept only, posts nowhere. */

.reserve-form { margin-top: 2.75rem; max-width: 40rem; }

/* Two named groups instead of one long run of fields. */
.field-group {
  margin: 0 0 1.1rem;
  font-family: "Fraunces", Georgia, serif;
  font-variation-settings: "opsz" 144, "WONK" 1;
  font-size: 1.25rem;
  color: var(--ink-on-cream);
}

.field-group + .field,
.field-group + .field-row { margin-top: 0; }

.reserve-form .field-group ~ .field-group { margin-top: 2.5rem; }

.field { margin-bottom: 1.5rem; }

.field-row {
  display: grid;
  gap: 1.5rem;
}

.field label {
  display: block;
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-on-cream-quiet);
  margin-bottom: 0.55rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: "Lora", Georgia, serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink-on-cream);
  background: rgba(34, 28, 23, 0.115);
  border: 0;
  border-radius: 0;
  padding: 1.05rem 1.15rem;
  appearance: none;
  transition: background 0.2s ease;
}

.field textarea { resize: vertical; }

.field input:hover,
.field select:hover,
.field textarea:hover { background: rgba(34, 28, 23, 0.165); }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid var(--ember-deep);
  outline-offset: 0;
  background: rgba(34, 28, 23, 0.04);
}

.field select {
  background-image: linear-gradient(45deg, transparent 50%, var(--ink-on-cream) 50%),
                    linear-gradient(135deg, var(--ink-on-cream) 50%, transparent 50%);
  background-position: right 1.35rem center, right 1.05rem center;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 2.75rem;
}

.form-status {
  margin-top: 1.25rem;
  min-height: 1.5rem;
  font-style: italic;
  color: var(--ember-deep);
}

.reserve-aside p {
  color: var(--ink-on-cream-quiet);
  font-size: 0.98rem;
  line-height: 1.75;
}

/* Footer */

.site-footer {
  background: var(--ground);
  color: var(--ink-on-dark);
  padding-block: clamp(3.5rem, 9vw, 6.5rem);
}

.footer-inner { display: grid; gap: 1.25rem; }

.footer-mark {
  font-family: "Fraunces", Georgia, serif;
  font-variation-settings: "opsz" 144, "WONK" 1;
  font-size: clamp(1.7rem, 1.2rem + 2vw, 2.6rem);
  line-height: 1.1;
  margin: 0;
}

.footer-address {
  margin: 0;
  color: var(--ink-on-dark-quiet);
  line-height: 1.8;
}

.footer-credit {
  margin: 1.5rem 0 0;
  font-size: 0.95rem;
  color: var(--ink-on-dark-quiet);
}

.footer-credit a {
  color: var(--ember);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-credit a:hover,
.footer-credit a:focus-visible { color: var(--surface); }

.footer-note {
  margin: 0;
  max-width: 60ch;
  font-size: 0.8rem;
  line-height: 1.7;
  color: rgba(242, 233, 220, 0.42);
}

.footer-note + .footer-note { margin-top: 0.7rem; }

/* A very slow push in on the photography. Pointer devices only, and off
   entirely when reduced motion is asked for. */

@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  figure.split-minor { overflow: hidden; }

  figure.split-minor img {
    transition: transform 1.6s cubic-bezier(0.22, 0.61, 0.36, 1);
    will-change: transform;
  }

  figure.split-minor:hover img { transform: scale(1.035); }
}

/* Wider viewports get the asymmetry. Phones stack. */

@media (min-width: 720px) {
  .field-row { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 900px) {
  .split-a { grid-template-columns: 1.45fr 1fr; }
  .split-b { grid-template-columns: 1fr 1.42fr; }
  .split-c { grid-template-columns: 1.42fr 1fr; }
  .menu-body { grid-template-columns: 1.28fr 1fr; }
  .hours { padding-top: 0.75rem; }
  .reserve-aside { padding-top: 4.25rem; }
}

/* On a narrow bar four links plus the wordmark crowds and wraps. Story and
   Visit are convenience jumps on a single scrolling page. Menu and Reserve
   are the two a diner actually wants, so those are what survive. */
@media (max-width: 620px) {
  .topnav a[href="#story"],
  .topnav a[href="#visit"] { display: none; }

  .topnav { gap: 1.5rem; }
  .topbar-inner { flex-wrap: nowrap; }

  /* Stacked, the slash separators would land at the start of each wrapped
     line instead of between the facts. Drop them and let the lines do it. */
  .service-strip span { display: block; }
  .service-strip span + span::before { content: none; }
  .service-strip span + span { margin-top: 0.3rem; }
}

@media (max-width: 899px) {
  .hero-figure { aspect-ratio: 4 / 5; max-height: none; }
  .breakout-figure { aspect-ratio: 4 / 3; max-height: none; }
  .arrival-figure { aspect-ratio: 4 / 3; max-height: none; }
  .breakout-quote p { max-width: 14ch; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}

/* Concept backlink. Deliberately foreign to this site's design system: it is a
   frame around the demonstration, not part of it, so it uses none of the type,
   colour or radius above. Fixed because the footer credit sits at the bottom of
   a long page, which in practice means a visitor has no route back at all. */
.ph-backlink {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(18, 18, 20, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-family: ui-sans-serif, system-ui, "Segoe UI", Arial, sans-serif;
  font-size: 12.5px;
  line-height: 1;
  color: #d4d4d8;
  text-decoration: none;
}

.ph-backlink strong { color: #fff; font-weight: 600; }
.ph-backlink:hover { background: rgba(18, 18, 20, 0.98); color: #fff; }
.ph-backlink:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }

@media (max-width: 480px) {
  .ph-backlink { right: 10px; bottom: 10px; padding: 8px 12px; font-size: 11.5px; }
}
