:root {
  --bg: #080706;
  --bg-soft: #11100f;
  --ink: #f7f1e8;
  --muted: rgba(247, 241, 232, 0.68);
  --faint: rgba(247, 241, 232, 0.12);
  --gold: #d7b36a;
  --gold-2: #f1d28b;
  --glass: rgba(255,255,255,0.065);
  --border: rgba(247, 241, 232, 0.18);
  --shadow: 0 30px 100px rgba(0,0,0,0.55);
  --radius-lg: 34px;
  --radius-md: 22px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(215,179,106,0.16), transparent 36vw),
    radial-gradient(circle at 85% 15%, rgba(255,255,255,0.09), transparent 25vw),
    linear-gradient(180deg, #060504 0%, #0b0908 45%, #060504 100%);
  overflow-x: hidden;
}

body.lock { overflow: hidden; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.07;
  background-image:
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 7px 7px;
  mix-blend-mode: overlay;
}

.rain-canvas {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 2;
  pointer-events: none;
  opacity: .46;
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 7px rgba(255,255,255,.12));
}

.progress-line {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  z-index: 999;
  background: linear-gradient(90deg, var(--gold), #fff1bf, var(--gold));
  box-shadow: 0 0 22px rgba(215,179,106,0.8);
}

.site-header {
  position: fixed;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: min(calc(100% - 32px), 1220px);
  height: 74px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 14px 10px 12px;
  background: rgba(7, 6, 5, 0.62);
  border: 1px solid var(--border);
  border-radius: 999px;
  backdrop-filter: blur(22px);
  box-shadow: 0 16px 60px rgba(0,0,0,0.35);
  transition: transform .45s ease, opacity .35s ease, top .35s ease;
}
.site-header.hide { transform: translate(-50%, -110%); opacity: 0; }

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}
.brand-mark {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(215,179,106,0.6);
  background: radial-gradient(circle at 35% 20%, rgba(255,255,255,0.2), rgba(215,179,106,0.14) 35%, rgba(0,0,0,0.28));
  font-family: "Cormorant Garamond", serif;
  font-size: 23px;
  font-weight: 700;
  letter-spacing: .08em;
  color: #ffe4a2;
}
.brand strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  line-height: 1;
  letter-spacing: .04em;
}
.brand small {
  display: block;
  margin-top: 3px;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: .14em;
  text-transform: uppercase;
}
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav a {
  padding: 12px 14px;
  border-radius: 999px;
  font-size: 13px;
  color: rgba(247, 241, 232, 0.76);
  transition: .25s ease;
}
.nav a:hover { background: rgba(255,255,255,0.08); color: var(--ink); }
.header-actions { display: flex; align-items: center; gap: 8px; }
.mini-call {
  padding: 12px 17px;
  border-radius: 999px;
  color: #120f08;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold), #fff2bf);
  box-shadow: 0 10px 25px rgba(215,179,106,0.24);
}
.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  margin: 5px auto;
  transition: .25s ease;
}
.menu-toggle.active span:first-child { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:last-child { transform: rotate(-45deg) translate(0, 0); }

.hero {
  min-height: 100svh;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 130px 22px 70px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("pc.png");
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  filter: saturate(0.92) contrast(1.08) brightness(0.82);
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.86) 0%, rgba(0,0,0,0.62) 38%, rgba(0,0,0,0.22) 72%, rgba(0,0,0,0.76) 100%),
    radial-gradient(circle at 25% 55%, rgba(215,179,106,0.18), transparent 28vw),
    linear-gradient(180deg, rgba(0,0,0,0.30), rgba(8,7,6,0.96));
}
.hero-inner {
  position: relative;
  z-index: 3;
  width: min(100%, var(--max));
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 44px;
  align-items: center;
}
.eyebrow {
  margin: 0 0 18px;
  color: var(--gold-2);
  text-transform: uppercase;
  letter-spacing: .24em;
  font-size: 12px;
  font-weight: 800;
}
h1, h2, h3 { margin: 0; }
h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(68px, 9vw, 132px);
  line-height: .82;
  letter-spacing: -.055em;
  max-width: 760px;
  text-shadow: 0 18px 80px rgba(0,0,0,0.75);
}

.pencil-line {
  width: fit-content;
  margin-top: 16px;
  padding: 4px 12px 6px;
  font-family: "Caveat", cursive;
  font-size: clamp(27px, 3vw, 43px);
  line-height: 1;
  color: #ffe3a8;
  letter-spacing: .01em;
  transform: rotate(-2deg);
  text-shadow: 0 0 24px rgba(215,179,106,.26);
  background: linear-gradient(90deg, rgba(215,179,106,.08), transparent 82%);
  border-bottom: 1px solid rgba(215,179,106,.34);
}
.hero-text {
  max-width: 610px;
  margin: 28px 0 0;
  color: rgba(247,241,232,0.82);
  font-size: clamp(17px, 2.2vw, 21px);
  line-height: 1.7;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 30px 0 0;
}
.hero-meta span {
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(14px);
  color: rgba(247,241,232,0.82);
  font-size: 13px;
}
.rating-pill b { color: var(--gold-2); }
.hero-buttons, .contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 15px 22px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.16);
  font-weight: 800;
  letter-spacing: -.02em;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-3px); }
.btn.primary {
  color: #100e09;
  background: linear-gradient(135deg, var(--gold), #fff0b7 52%, #c6953b);
  box-shadow: 0 18px 44px rgba(215,179,106,0.24);
}
.btn.ghost {
  color: var(--ink);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(14px);
}
.btn.full { width: 100%; border: 0; }

.booking-card, .lux-panel, .contact-card, .hours-card, .map-card, .review-shell {
  border: 1px solid var(--border);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.09), rgba(255,255,255,0.035)),
    rgba(9,8,7,0.64);
  backdrop-filter: blur(24px);
  box-shadow: var(--shadow);
  border-radius: var(--radius-lg);
}
.booking-card {
  position: relative;
  padding: 28px;
  overflow: hidden;
}
.card-topline {
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), #fff2bd, var(--gold), transparent);
}
.card-kicker { margin: 0 0 10px; color: var(--gold-2); font-size: 24px; font-family: "Caveat", cursive; letter-spacing: .03em; font-weight: 700; transform: rotate(-1deg); }
.booking-card h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 34px;
  line-height: 1;
  margin-bottom: 22px;
}
form { display: grid; gap: 14px; }
label { display: grid; gap: 8px; color: rgba(247,241,232,0.78); font-size: 13px; font-weight: 700; }
input, select, textarea {
  width: 100%;
  border: 1px solid rgba(247,241,232,0.16);
  border-radius: 16px;
  color: var(--ink);
  background: rgba(0,0,0,0.28);
  padding: 14px 14px;
  outline: none;
  transition: border .25s ease, box-shadow .25s ease;
}
input:focus, select:focus, textarea:focus { border-color: rgba(215,179,106,0.7); box-shadow: 0 0 0 4px rgba(215,179,106,0.12); }
textarea { resize: vertical; }
option { background: #111; color: #fff; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.booking-note { display: block; margin-top: 14px; color: var(--muted); line-height: 1.6; }

.trust-strip {
  width: min(calc(100% - 44px), var(--max));
  margin: -36px auto 0;
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(11,10,9,0.76);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}
.trust-item { padding: 28px; border-right: 1px solid var(--border); }
.trust-item:last-child { border-right: 0; }
.trust-item strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  color: var(--gold-2);
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1;
  text-shadow: 0 0 26px rgba(215,179,106,.22);
}
.stat-number {
  background: linear-gradient(120deg, #b98b35, #fff1bf 42%, #d7b36a 76%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
}
.trust-item span { color: var(--muted); font-size: 13px; }

.section, .split {
  width: min(calc(100% - 44px), var(--max));
  margin: 0 auto;
  padding: 110px 0 0;
}
.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}
.section-head h2, .split h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(44px, 6vw, 76px);
  line-height: .95;
  letter-spacing: -.035em;
}
.section-head p:not(.eyebrow), .split-copy p, .lux-panel p, .contact-card p {
  color: var(--muted);
  line-height: 1.85;
  font-size: 16px;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service-card {
  min-height: 255px;
  padding: 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background:
    radial-gradient(circle at top right, rgba(215,179,106,0.14), transparent 52%),
    rgba(255,255,255,0.045);
  transition: transform .35s ease, border .35s ease, background .35s ease;
  overflow: hidden;
  position: relative;
}
.service-card::after {
  content: "";
  position: absolute;
  inset: auto -30px -50px auto;
  width: 125px;
  height: 125px;
  border: 1px solid rgba(215,179,106,0.18);
  border-radius: 50%;
}
.service-card:hover { transform: translateY(-8px); border-color: rgba(215,179,106,0.55); background-color: rgba(255,255,255,0.07); }
.service-card span { color: var(--gold-2); font-weight: 800; letter-spacing: .15em; }
.service-card h3 {
  font-family: "Cormorant Garamond", serif;
  margin-top: 48px;
  font-size: 34px;
}
.service-card p { color: var(--muted); line-height: 1.75; }

.split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 22px;
  align-items: stretch;
}
.split-copy, .lux-panel {
  padding: 42px;
  border-radius: var(--radius-lg);
}
.split-copy {
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.035);
}
.signature {
  margin-top: 34px;
  width: fit-content;
  font-family: "Caveat", cursive;
  font-size: clamp(38px, 4vw, 58px);
  color: var(--gold-2);
  transform: rotate(-2deg);
  text-shadow: 0 0 26px rgba(215,179,106,.24);
  border-bottom: 1px solid rgba(215,179,106,.34);
}
.lux-panel {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.1), rgba(0,0,0,0.72)),
    radial-gradient(circle at 50% 22%, rgba(215,179,106,0.2), transparent 52%),
    rgba(255,255,255,0.055);
}
.lux-panel span { color: var(--gold-2); text-transform: uppercase; letter-spacing: .2em; font-size: 12px; font-weight: 900; }
.lux-panel h3 { font-family: "Cormorant Garamond", serif; font-size: 44px; line-height: 1.02; margin-top: 18px; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
.gallery-item {
  position: relative;
  aspect-ratio: 3 / 4;
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255,255,255,0.05);
  cursor: zoom-in;
  transform: translateZ(0);
}
.gallery-item:nth-child(6n + 1), .gallery-item:nth-child(6n + 4) { grid-row: span 2; aspect-ratio: auto; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.06);
  transition: transform .55s ease, filter .35s ease;
}
.gallery-item:hover img { transform: scale(1.08); filter: saturate(1.05) contrast(1.1) brightness(1.05); }
.gallery-item::after {
  content: "Galeriyi Aç";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(0,0,0,0.46);
  backdrop-filter: blur(10px);
  color: rgba(255,255,255,.92);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
  transform: translateY(12px);
  opacity: 0;
  transition: .25s ease;
}
.gallery-item:hover::after { opacity: 1; transform: translateY(0); }

.review-shell {
  position: relative;
  padding: 24px 64px;
}
.review-window { overflow: hidden; }
.review-track {
  display: flex;
  transition: transform .45s cubic-bezier(.2,.8,.2,1);
}
.review-card {
  flex: 0 0 calc(100% / 3);
  padding: 12px;
}
.review-inner {
  height: 100%;
  min-height: 365px;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 25px;
  background: rgba(255,255,255,0.045);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.stars { color: var(--gold-2); letter-spacing: .08em; font-size: 18px; }
.review-text { color: rgba(247,241,232,0.8); line-height: 1.75; margin: 0; }
.review-author { margin-top: auto; font-weight: 900; color: var(--ink); }
.review-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(0,0,0,0.35);
  color: var(--ink);
  font-size: 34px;
  cursor: pointer;
  transition: .25s ease;
}
.review-arrow:hover { background: rgba(215,179,106,0.18); border-color: rgba(215,179,106,0.5); }
.review-arrow.prev { left: 14px; }
.review-arrow.next { right: 14px; }

.hours-contact {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 18px;
  padding-bottom: 80px;
}
.contact-card, .hours-card, .map-card { padding: 30px; }
.contact-card h2 { font-family: "Cormorant Garamond", serif; font-size: 58px; line-height: .96; }
.hours-card h3 { font-family: "Cormorant Garamond", serif; font-size: 38px; margin-bottom: 20px; }
.hours-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.hours-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  color: var(--muted);
}
.hours-list li b { color: var(--ink); }
.map-card { grid-column: 1 / -1; padding: 14px; }
.map-card iframe {
  width: 100%;
  height: 410px;
  border: 0;
  border-radius: 24px;
  filter: grayscale(1) invert(.88) contrast(.9);
}
.map-card a {
  display: inline-flex;
  margin: 12px 10px 4px;
  color: var(--gold-2);
  font-weight: 800;
}


.seo-text {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 34px;
  padding: 24px 28px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(255,255,255,.055), rgba(255,255,255,.018));
  box-shadow: 0 22px 70px rgba(0,0,0,.26);
  color: rgba(240, 236, 228, .68);
  font-size: 13px;
  line-height: 1.85;
}
.seo-text p { margin: 0; }
.seo-text p + p { margin-top: 10px; }

.footer {
  width: min(calc(100% - 44px), var(--max));
  margin: 0 auto 28px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 28px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
  background: rgba(255,255,255,0.035);
}
.footer strong { color: var(--ink); font-family: "Cormorant Garamond", serif; font-size: 28px; }
.footer p { max-width: 600px; line-height: 1.7; margin: 8px 0 0; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px; align-content: center; }
.footer-links a { padding: 10px 13px; border: 1px solid var(--border); border-radius: 999px; color: var(--ink); }

.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 99;
  display: flex;
  gap: 10px;
}
.floating-actions a {
  padding: 14px 17px;
  border-radius: 999px;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(0,0,0,0.35);
}
.float-call { color: #120f08; background: linear-gradient(135deg, var(--gold), #fff1bf); }
.float-whatsapp { color: #fff; background: #128c4a; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(0,0,0,0.88);
  display: none;
  place-items: center;
  padding: 28px;
}
.lightbox.open { display: grid; }
.lightbox img {
  max-height: 88vh;
  width: auto;
  max-width: min(100%, 980px);
  border-radius: 24px;
  box-shadow: 0 40px 120px rgba(0,0,0,0.7);
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: #fff;
  background: rgba(255,255,255,0.06);
  font-size: 36px;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.show { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .nav {
    position: fixed;
    inset: 94px 16px auto;
    display: grid;
    gap: 8px;
    padding: 16px;
    border-radius: 26px;
    border: 1px solid var(--border);
    background: rgba(7,6,5,0.92);
    backdrop-filter: blur(20px);
    transform: translateY(-14px);
    opacity: 0;
    pointer-events: none;
    transition: .25s ease;
  }
  .nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav a { padding: 15px 16px; }
  .menu-toggle { display: block; }
  .mini-call { display: none; }
  .hero { min-height: 100svh; padding: 116px 18px 52px; }
  .hero-bg { background-image: url("tel.png"); background-position: center top; }
  .hero-shade {
    background:
      linear-gradient(180deg, rgba(0,0,0,0.40) 0%, rgba(0,0,0,0.66) 42%, rgba(0,0,0,0.96) 100%),
      radial-gradient(circle at 50% 34%, rgba(215,179,106,0.15), transparent 48vw);
  }
  .hero-inner { grid-template-columns: 1fr; gap: 28px; }
  h1 { font-size: clamp(58px, 18vw, 92px); max-width: 520px; }
  .hero-text { font-size: 16px; line-height: 1.65; }
  .booking-card { padding: 22px; border-radius: 26px; }
  .trust-strip { grid-template-columns: repeat(2, 1fr); margin-top: 18px; }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(1), .trust-item:nth-child(2) { border-bottom: 1px solid var(--border); }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .split, .hours-contact { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .review-card { flex-basis: 50%; }
  .footer { flex-direction: column; }
  .footer-links { justify-content: flex-start; }
}

@media (max-width: 640px) {
  .rain-canvas { opacity: .24; filter: none; }
  .site-header { width: calc(100% - 20px); top: 10px; height: 66px; padding: 8px; }
  .brand-mark { width: 48px; height: 48px; }
  .brand strong { font-size: 19px; }
  .brand small { display: none; }
  .hero-meta span { font-size: 12px; }
  .hero-buttons .btn, .contact-actions .btn { width: 100%; }
  .form-grid { grid-template-columns: 1fr; }
  .trust-strip { width: calc(100% - 28px); border-radius: 24px; }
  .trust-item { padding: 22px; }
  .section, .split { width: calc(100% - 28px); padding-top: 78px; }
  .section-head h2, .split h2 { font-size: 46px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 220px; }
  .split-copy, .lux-panel, .contact-card, .hours-card { padding: 24px; border-radius: 26px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .gallery-item:nth-child(6n + 1), .gallery-item:nth-child(6n + 4) { grid-row: span 1; aspect-ratio: 3 / 4; }
  .review-shell { padding: 20px 44px; }
  .review-card { flex-basis: 100%; padding: 8px; }
  .review-inner { min-height: 390px; padding: 22px; }
  .review-arrow { width: 40px; height: 40px; font-size: 28px; }
  .review-arrow.prev { left: 6px; }
  .review-arrow.next { right: 6px; }
  .map-card iframe { height: 320px; }
  .floating-actions { left: 12px; right: 12px; bottom: 12px; display: grid; grid-template-columns: 1fr 1fr; }
  .floating-actions a { text-align: center; padding: 13px 10px; }
  .footer { width: calc(100% - 28px); margin-bottom: 88px; padding: 22px; }
}
