:root {
  --peach: #f18468;
  --peach-soft: #fbe7df;
  --green: #83b98a;
  --text: #302c29;
  --muted: #6c6762;
  --line: #e9e5e1;
  --warm: #faf8f5;
  --serif: "Noto Serif KR", "Nanum Myeongjo", Georgia, serif;
  --sans: "Noto Sans KR", "Apple SD Gothic Neo", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-padding-top: 20px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  background: #fff;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.content {
  width: min(1130px, calc(100% - 48px));
  margin: 0 0 0 max(24px, calc((100vw - 1200px) / 2));
}

.site-header {
  position: relative;
  z-index: 30;
  height: 136px;
  background: #fff;
  border-bottom: 1px solid #f2efec;
}

.header-inner {
  width: min(1310px, calc(100% - 80px));
  height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 240px 1fr 220px;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  padding-left: 50px;
  line-height: 1;
}

.brand-flower {
  width: 54px;
  color: var(--green);
  font-family: var(--serif);
  font-size: 47px;
  font-weight: 400;
  line-height: 1;
  transform: rotate(-8deg);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.brand-copy strong {
  font-family: var(--serif);
  font-size: 29px;
  font-weight: 600;
  letter-spacing: -0.06em;
}

.brand-copy small {
  margin-top: 10px;
  font-size: 10px;
  letter-spacing: 0.12em;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: 72px;
  font-size: 15px;
  font-weight: 500;
}

.desktop-nav a,
.header-phone {
  transition: color 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--peach);
}

.header-phone {
  justify-self: end;
  color: var(--peach);
  font-size: 16px;
  font-weight: 500;
}

.header-phone span {
  display: inline-block;
  margin-right: 9px;
  font-size: 22px;
  transform: rotate(120deg);
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.hero {
  min-height: 727px;
  display: grid;
  grid-template-columns: 44% 56%;
  background: #faf7f3;
  overflow: hidden;
}

.hero-copy {
  align-self: center;
  width: 470px;
  max-width: calc(100% - 48px);
  margin-left: max(88px, calc((100vw - 1160px) / 2));
  padding: 36px 0 34px;
  z-index: 1;
}

.hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(52px, 4.25vw, 68px);
  font-weight: 400;
  line-height: 1.28;
  letter-spacing: -0.055em;
}

.hero p {
  margin: 38px 0 36px;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.8;
}

.primary-button,
.map-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 70px;
  border-radius: 3px;
  background: var(--peach);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  transition: filter 180ms ease, background 180ms ease;
}

.primary-button {
  min-width: 282px;
}

.primary-button:hover,
.primary-button:focus-visible,
.map-button:hover,
.map-button:focus-visible {
  filter: brightness(0.94);
}

.hero-image-wrap {
  min-height: 727px;
  overflow: hidden;
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 53% center;
}

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

.section-title {
  position: relative;
  margin: 0 0 54px;
  font-family: var(--serif);
  font-size: 31px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.045em;
}

.section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -24px;
  width: 40px;
  height: 2px;
  background: #f4a18b;
}

.section-title.centered {
  width: min(1200px, calc(100vw - 48px));
  text-align: center;
}

.section-title.centered::after {
  left: 50%;
  transform: translateX(-50%);
}

.bouquets-section {
  min-height: 730px;
  padding: 63px 0 65px;
}

.bouquet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 29px;
  max-width: 1100px;
  margin: 0;
}

.bouquet-card {
  min-width: 0;
  border: 1px solid #ddd8d4;
  background: #fff;
  text-align: center;
}

.bouquet-card img {
  width: 100%;
  height: 366px;
  object-fit: cover;
  object-position: center 40%;
}

.bouquet-info {
  padding: 20px 20px 22px;
}

.bouquet-info h3 {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
}

.bouquet-info p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 13px;
}

.bouquet-info strong {
  font-size: 16px;
  font-weight: 700;
}

.about-section {
  min-height: 445px;
  padding: 60px 0 58px;
}

.about-grid {
  display: grid;
  grid-template-columns: 330px 740px;
  gap: 56px;
  justify-content: space-between;
  align-items: start;
}

.about-copy p {
  margin: 0;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 16px;
  line-height: 2.12;
}

.shop-image {
  width: 100%;
  height: 315px;
  object-fit: cover;
  object-position: center;
}

.order-section {
  min-height: 338px;
  padding: 34px 0 54px;
}

.order-section .section-title {
  margin-bottom: 55px;
}

.order-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.order-item {
  display: grid;
  grid-template-columns: 98px 1fr;
  gap: 17px;
  min-height: 150px;
  padding: 0 28px 0 22px;
  border-right: 1px solid var(--line);
}

.order-item:first-child {
  padding-left: 0;
}

.order-item:last-child {
  padding-right: 0;
  border-right: 0;
}

.round-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: var(--peach-soft);
  color: var(--peach);
  font-size: 38px;
  font-weight: 400;
}

.message-icon {
  padding-bottom: 16px;
  font-size: 42px;
  letter-spacing: -0.04em;
}

.order-item h3 {
  margin: 6px 0 8px;
  font-size: 16px;
  font-weight: 700;
}

.order-item p,
.order-item span,
.order-item a {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.order-item a {
  display: inline-block;
  margin-top: 12px;
  color: var(--peach);
}

.store-section {
  min-height: 449px;
  padding: 38px 0 48px;
}

.store-section .section-title {
  margin-bottom: 52px;
}

.store-grid {
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 54px;
  align-items: start;
}

.store-details {
  margin: 0;
}

.store-details > div {
  display: grid;
  grid-template-columns: 145px 1fr;
  align-items: center;
  min-height: 54px;
}

.store-details dt,
.store-details dd {
  margin: 0;
  font-size: 13px;
}

.store-details dt {
  font-weight: 700;
}

.store-details dt span {
  display: inline-block;
  width: 45px;
  color: var(--peach);
  font-size: 19px;
  text-align: center;
}

.store-details dd {
  color: var(--muted);
  white-space: nowrap;
}

.store-details dd i::after {
  content: "|";
  margin: 0 10px;
  color: #c9c5c1;
  font-style: normal;
}

.map-block img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.map-button {
  width: 218px;
  height: 48px;
  margin: 25px auto 0;
  font-size: 16px;
}

.site-footer {
  min-height: 102px;
  display: flex;
  align-items: center;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.footer-inner p {
  grid-column: 2;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.footer-inner a {
  justify-self: end;
  font-size: 21px;
}

.mobile-bottom-bar {
  display: none;
}

@media (max-width: 1100px) and (min-width: 768px) {
  .header-inner {
    width: calc(100% - 48px);
    grid-template-columns: 200px 1fr 180px;
  }

  .desktop-nav {
    gap: 25px;
    font-size: 14px;
  }

  .hero-copy {
    margin-left: 32px;
  }

  .hero h1 {
    font-size: clamp(38px, 5vw, 52px);
    white-space: nowrap;
  }

  .about-grid {
    grid-template-columns: 300px 1fr;
  }

  .store-grid {
    grid-template-columns: 1fr 44%;
    gap: 30px;
  }

  .store-details > div {
    grid-template-columns: 122px 1fr;
  }

  .store-details dd {
    white-space: normal;
  }
}

@media (max-width: 767px) {
  html {
    scroll-padding-top: 0;
  }

  body {
    padding-bottom: 74px;
    font-size: 14px;
  }

  .content {
    width: calc(100% - 32px);
    margin: 0 auto;
  }

  .site-header {
    height: 74px;
  }

  .header-inner {
    width: calc(100% - 32px);
    display: flex;
    justify-content: space-between;
  }

  .brand-flower {
    width: 35px;
    font-size: 32px;
  }

  .brand {
    padding-left: 0;
  }

  .brand-copy strong {
    font-size: 21px;
  }

  .brand-copy small {
    margin-top: 6px;
    font-size: 7px;
  }

  .desktop-nav,
  .header-phone {
    display: none;
  }

  .menu-toggle {
    display: flex;
    width: 38px;
    height: 38px;
    padding: 7px 3px;
    border: 0;
    background: transparent;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    width: 31px;
    height: 2px;
    background: var(--text);
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
  }

  .mobile-menu {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    display: grid;
    padding: 12px 24px 20px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: #fff;
    box-shadow: 0 9px 22px rgb(48 44 41 / 10%);
  }

  .mobile-menu[hidden] {
    display: none;
  }

  .mobile-menu a {
    padding: 12px 6px;
    border-bottom: 1px solid #f3f0ed;
    font-size: 15px;
  }

  .mobile-menu a:last-child {
    color: var(--peach);
    border-bottom: 0;
  }

  .hero {
    min-height: 0;
    display: flex;
    flex-direction: column;
    background: #fff;
  }

  .hero-image-wrap {
    order: -1;
    width: 100%;
    min-height: 0;
    height: 272px;
  }

  .hero-image-wrap img {
    object-position: 56% 45%;
  }

  .hero-copy {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 26px 20px 25px;
    text-align: center;
  }

  .hero h1 {
    font-size: 30px;
    line-height: 1.45;
    letter-spacing: -0.06em;
  }

  .hero p {
    margin: 14px 0 20px;
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.7;
  }

  .desktop-only {
    display: none;
  }

  .primary-button {
    min-width: 164px;
    height: 48px;
    font-size: 15px;
  }

  .section-title {
    margin-bottom: 38px;
    font-size: 24px;
    text-align: center;
  }

  .section-title.centered {
    width: auto;
  }

  .section-title::after {
    left: 50%;
    bottom: -14px;
    width: 32px;
    transform: translateX(-50%);
  }

  .bouquets-section {
    min-height: 0;
    padding: 25px 0 28px;
  }

  .bouquet-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .bouquet-card {
    display: grid;
    grid-template-columns: 128px 1fr;
    min-height: 126px;
    border: 0;
    text-align: left;
  }

  .bouquet-card img {
    width: 128px;
    height: 126px;
  }

  .bouquet-info {
    align-self: center;
    padding: 6px 0 6px 17px;
  }

  .bouquet-info h3 {
    margin-bottom: 8px;
    font-size: 17px;
  }

  .bouquet-info p {
    max-width: 180px;
    margin-bottom: 7px;
    font-size: 14px;
    line-height: 1.7;
  }

  .bouquet-info strong {
    font-size: 16px;
  }

  .about-section {
    min-height: 0;
    padding: 20px 0 30px;
  }

  .about-grid {
    display: block;
  }

  .about-copy p {
    width: 276px;
    max-width: 100%;
    margin: 0 auto 24px;
    font-family: var(--sans);
    font-size: 14px;
    line-height: 1.85;
  }

  .shop-image {
    height: 180px;
  }

  .order-section {
    min-height: 0;
    padding: 24px 0 27px;
  }

  .order-section .section-title {
    margin-bottom: 34px;
  }

  .order-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .order-item,
  .order-item:first-child,
  .order-item:last-child {
    grid-template-columns: 48px 1fr;
    gap: 13px;
    min-height: 48px;
    padding: 0;
    border: 0;
    align-items: center;
  }

  .round-icon {
    width: 48px;
    height: 48px;
    font-size: 23px;
  }

  .message-icon {
    padding-bottom: 10px;
    font-size: 25px;
  }

  .order-item > div {
    display: grid;
    grid-template-columns: minmax(100px, auto) 1fr;
    align-items: center;
    gap: 12px;
  }

  .order-item h3 {
    margin: 0;
    font-size: 14px;
  }

  .order-item p {
    display: none;
  }

  .order-item span,
  .order-item a {
    margin: 0;
    font-size: 14px;
    white-space: nowrap;
  }

  .order-item a {
    color: var(--text);
  }

  .store-section {
    min-height: 0;
    padding: 24px 0 31px;
  }

  .store-section .section-title {
    margin-bottom: 35px;
  }

  .store-grid {
    display: block;
  }

  .store-details > div {
    display: block;
    min-height: 0;
    margin-bottom: 18px;
    padding-left: 43px;
  }

  .store-details dt,
  .store-details dd {
    font-size: 14px;
  }

  .store-details dt {
    position: relative;
    margin-bottom: 4px;
  }

  .store-details dt span {
    position: absolute;
    top: 0;
    left: -42px;
    width: 25px;
    font-size: 19px;
  }

  .store-details dd {
    line-height: 1.65;
    white-space: normal;
  }

  .store-details dd i::after {
    margin: 0 7px;
  }

  .map-block img {
    display: none;
  }

  .map-button {
    width: 180px;
    height: 49px;
    margin-top: 25px;
    font-size: 15px;
  }

  .site-footer {
    display: none;
  }

  .mobile-bottom-bar {
    position: fixed;
    z-index: 40;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 74px;
  }

  .mobile-bottom-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 17px;
    font-weight: 700;
  }

  .mobile-bottom-bar span {
    margin-right: 9px;
    font-size: 23px;
  }

  .bottom-call {
    background: var(--peach);
  }

  .bottom-map {
    background: var(--green);
  }
}

@media (max-width: 374px) {
  .bouquet-card {
    grid-template-columns: 115px 1fr;
  }

  .bouquet-card img {
    width: 115px;
  }

  .bouquet-info {
    padding-left: 13px;
  }

  .bouquet-info p,
  .store-details dt,
  .store-details dd,
  .order-item span,
  .order-item a {
    font-size: 14px;
  }

  .order-item > div {
    gap: 7px;
    min-width: 0;
  }

  .order-item,
  .order-item span,
  .order-item a {
    min-width: 0;
    white-space: normal;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
